clarification on the SON statistics object #146

Closed
opened 2021-07-17 19:09:31 +00:00 by prandnum · 11 comments
prandnum commented 2021-07-17 19:09:31 +00:00 (Migrated from gitlab.com)

The definition in the wiki is as follows

flat_map<sidechain_type, uint64_t> total_txs_signed; // Lifetime total transactions signed
flat_map<sidechain_type, uint64_t> txs_signed; // Transactions signed since the last son payouts

Following is the data from the current docker setup:

unlocked >>> get_object 2.25.7
get_object 2.25.7
[{
    "id": "2.25.7",
    "owner": "1.33.7",
    "total_txs_signed": 0,
    "txs_signed": 4,
    "total_voted_time": 343200,
    "total_downtime": 0,
    "current_interval_downtime": 0,
    "last_down_timestamp": "1970-01-01T00:00:00",
    "last_active_timestamp": "2021-07-17T18:42:04",
    "deregistered_timestamp": "1970-01-01T00:00:00",
    "total_sidechain_txs_reported": 4,
    "sidechain_txs_reported": 4
  }
]
unlocked >>>

As you can see here "total_txs_signed" < "txs_signed". (Note: The setup didn't have any transactions created for a day.)

The definition in the [wiki ](https://peerplays.atlassian.net/wiki/spaces/PIX/pages/2228682753/SON+Rewards+-+Hive+Bitcoin)is as follows flat_map<sidechain_type, uint64_t> total_txs_signed; // Lifetime total transactions signed flat_map<sidechain_type, uint64_t> txs_signed; // Transactions signed since the last son payouts Following is the data from the current docker setup: ``` unlocked >>> get_object 2.25.7 get_object 2.25.7 [{ "id": "2.25.7", "owner": "1.33.7", "total_txs_signed": 0, "txs_signed": 4, "total_voted_time": 343200, "total_downtime": 0, "current_interval_downtime": 0, "last_down_timestamp": "1970-01-01T00:00:00", "last_active_timestamp": "2021-07-17T18:42:04", "deregistered_timestamp": "1970-01-01T00:00:00", "total_sidechain_txs_reported": 4, "sidechain_txs_reported": 4 } ] unlocked >>> ``` As you can see here "total_txs_signed" < "txs_signed". (Note: The setup didn't have any transactions created for a day.)
prandnum commented 2021-07-17 19:09:31 +00:00 (Migrated from gitlab.com)

assigned to @serkixenos

assigned to @serkixenos
prandnum commented 2021-07-17 19:09:47 +00:00 (Migrated from gitlab.com)

@bobinson @serkixenos
CC: @hbelakon

@bobinson @serkixenos CC: @hbelakon
serkixenos commented 2021-07-18 23:33:03 +00:00 (Migrated from gitlab.com)

txs_signed is increased during sidechain_transaction_sign_operation execution, here
https://gitlab.com/PBSA/peerplays/-/blob/develop/libraries/chain/sidechain_transaction_evaluator.cpp#L100

total_txs_signed is increased at the end of son payout period, when txs_signed is reset to zero,here
https://gitlab.com/PBSA/peerplays/-/blob/develop/libraries/chain/db_maint.cpp#L239

Thats why total_txs_signed is less than txs_signed. We can increase total_txs_signed along with txs_signed, if thats required.

txs_signed is increased during sidechain_transaction_sign_operation execution, here https://gitlab.com/PBSA/peerplays/-/blob/develop/libraries/chain/sidechain_transaction_evaluator.cpp#L100 total_txs_signed is increased at the end of son payout period, when txs_signed is reset to zero,here https://gitlab.com/PBSA/peerplays/-/blob/develop/libraries/chain/db_maint.cpp#L239 Thats why total_txs_signed is less than txs_signed. We can increase total_txs_signed along with txs_signed, if thats required.
serkixenos commented 2021-07-19 11:33:24 +00:00 (Migrated from gitlab.com)

Addressed here
a55a4ecaad

Addressed here https://gitlab.com/PBSA/peerplays/-/commit/a55a4ecaadf11582ec1d83e921f0034dbc5956d5
serkixenos commented 2021-07-19 11:33:44 +00:00 (Migrated from gitlab.com)

assigned to @prandnum

assigned to @prandnum
prandnum commented 2021-07-19 12:21:27 +00:00 (Migrated from gitlab.com)

I see the same status today:

    "total_txs_signed": 0,
    "txs_signed": 4,
  "time": "2021-07-19T12:17:27",
  "current_witness": "1.6.4",
  "next_maintenance_time": "2021-07-19T12:20:00",
  "last_budget_time": "2021-07-19T12:10:00",
  "witness_budget": 0,
  "last_son_payout_time": "2020-10-28T00:00:00",
      "son_vesting_amount": 5000000,
      "son_vesting_period": 172800,
      "son_pay_max": 20000000,
      "son_pay_time": 86400,
      "son_deregister_time": 1200,
      "son_heartbeat_frequency": 120,
      "son_down_time": 360,
      "son_bitcoin_min_tx_confirmations": 1,
      "son_account": "1.2.19",
unlocked >>> get_dynamic_global_properties
get_dynamic_global_properties
{
  "id": "2.1.0",
  "head_block_number": 161995,
  "head_block_id": "000278cb147f0f82598be0248cb74e4b0068950d",
  "time": "2021-07-19T12:17:27",
  "current_witness": "1.6.4",
  "next_maintenance_time": "2021-07-19T12:20:00",
  "last_budget_time": "2021-07-19T12:10:00",
  "witness_budget": 0,
  "last_son_payout_time": "2020-10-28T00:00:00",
  "son_budget": 0,
  "accounts_registered_this_interval": 0,
  "recently_missed_count": 0,
  "current_aslot": 3983019,
  "recent_slots_filled": "340282366920938463463374607431768211455",
  "dynamic_flags": 0,
  "last_irreversible_block_num": 161988
}
unlocked >>> get_object 2.25.7
get_object 2.25.7
[{
    "id": "2.25.7",
    "owner": "1.33.7",
    "total_txs_signed": 0,
    "txs_signed": 4,
    "total_voted_time": 492600,
    "total_downtime": 0,
    "current_interval_downtime": 0,
    "last_down_timestamp": "1970-01-01T00:00:00",
    "last_active_timestamp": "2021-07-19T12:16:05",
    "deregistered_timestamp": "1970-01-01T00:00:00",
    "total_sidechain_txs_reported": 4,
    "sidechain_txs_reported": 4
  }
]
unlocked >>> get_global_properties
get_global_properties
{
  "id": "2.0.0",
  "parameters": {
    "current_fees": {
      "parameters": [[
          0,{
            "fee": 2000000,
            "price_per_kbyte": 1000000
          }
        ],[
          1,{
            "fee": 500000
          }
        ],[
          2,{
            "fee": 0
          }
        ],[
          3,{
            "fee": 2000000
          }
        ],[
          4,{}
        ],[
          5,{
            "basic_fee": 500000,
            "premium_fee": 200000000,
            "price_per_kbyte": 100000
          }
        ],[
          6,{
            "fee": 2000000,
            "price_per_kbyte": 100000
          }
        ],[
          7,{
            "fee": 300000
          }
        ],[
          8,{
            "membership_annual_fee": 200000000,
            "membership_lifetime_fee": 1000000000
          }
        ],[
          9,{
            "fee": 50000000
          }
        ],[
          10,{
            "symbol3": "50000000000",
            "symbol4": "30000000000",
            "long_symbol": 500000000,
            "price_per_kbyte": 10
          }
        ],[
          11,{
            "fee": 50000000,
            "price_per_kbyte": 10
          }
        ],[
          12,{
            "fee": 50000000
          }
        ],[
          13,{
            "fee": 50000000
          }
        ],[
          14,{
            "fee": 2000000,
            "price_per_kbyte": 100000
          }
        ],[
          15,{
            "fee": 2000000
          }
        ],[
          16,{
            "fee": 100000
          }
        ],[
          17,{
            "fee": 10000000
          }
        ],[
          18,{
            "fee": 50000000
          }
        ],[
          19,{
            "fee": 100000
          }
        ],[
          20,{
            "fee": 500000000
          }
        ],[
          21,{
            "fee": 2000000
          }
        ],[
          22,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          23,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          24,{
            "fee": 100000
          }
        ],[
          25,{
            "fee": 100000
          }
        ],[
          26,{
            "fee": 100000
          }
        ],[
          27,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          28,{
            "fee": 0
          }
        ],[
          29,{
            "fee": 500000000
          }
        ],[
          30,{
            "fee": 2000000
          }
        ],[
          31,{
            "fee": 100000
          }
        ],[
          32,{
            "fee": 100000
          }
        ],[
          33,{
            "fee": 2000000
          }
        ],[
          34,{
            "fee": 500000000
          }
        ],[
          35,{
            "fee": 100000,
            "price_per_kbyte": 10
          }
        ],[
          36,{
            "fee": 100000
          }
        ],[
          37,{}
        ],[
          38,{
            "fee": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          39,{
            "fee": 500000,
            "price_per_output": 500000
          }
        ],[
          40,{
            "fee": 500000,
            "price_per_output": 500000
          }
        ],[
          41,{
            "fee": 500000
          }
        ],[
          42,{}
        ],[
          43,{
            "fee": 2000000
          }
        ],[
          44,{}
        ],[
          45,{
            "fee": 100000
          }
        ],[
          46,{
            "fee": 100000
          }
        ],[
          47,{
            "fee": 100000
          }
        ],[
          48,{
            "fee": 50000000
          }
        ],[
          49,{
            "distribution_base_fee": 0,
            "distribution_fee_per_holder": 0
          }
        ],[
          50,{}
        ],[
          51,{
            "fee": 100000
          }
        ],[
          52,{
            "fee": 100000
          }
        ],[
          53,{
            "fee": 100000
          }
        ],[
          54,{
            "fee": 100000
          }
        ],[
          55,{
            "fee": 100000
          }
        ],[
          56,{
            "fee": 100000
          }
        ],[
          57,{
            "fee": 100000
          }
        ],[
          58,{
            "fee": 100000
          }
        ],[
          59,{
            "fee": 100000
          }
        ],[
          60,{
            "fee": 100000
          }
        ],[
          61,{
            "fee": 100000
          }
        ],[
          62,{
            "fee": 100000
          }
        ],[
          63,{
            "fee": 100000
          }
        ],[
          64,{}
        ],[
          65,{}
        ],[
          66,{
            "fee": 100000
          }
        ],[
          67,{}
        ],[
          68,{
            "fee": 100000
          }
        ],[
          69,{}
        ],[
          70,{
            "fee": 100000
          }
        ],[
          71,{
            "fee": 100000
          }
        ],[
          72,{
            "fee": 100000
          }
        ],[
          73,{
            "fee": 100000
          }
        ],[
          74,{
            "fee": 100000
          }
        ],[
          75,{}
        ],[
          76,{}
        ],[
          77,{
            "lottery_asset": 2000000,
            "price_per_kbyte": 10
          }
        ],[
          78,{
            "fee": 0
          }
        ],[
          79,{
            "fee": 0
          }
        ],[
          80,{
            "fee": 0
          }
        ],[
          81,{
            "fee": 2000000
          }
        ],[
          82,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          83,{
            "fee": 100000
          }
        ],[
          84,{
            "fee": 100000
          }
        ],[
          85,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          86,{
            "fee": 100000
          }
        ],[
          87,{
            "fee": 100000
          }
        ],[
          88,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          89,{
            "fee": 100000
          }
        ],[
          90,{
            "fee": 100000
          }
        ],[
          91,{
            "fee": 0
          }
        ],[
          92,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          93,{
            "fee": 100000
          }
        ],[
          94,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          95,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          96,{
            "fee": 100000
          }
        ],[
          97,{
            "fee": 100000
          }
        ],[
          98,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          99,{
            "fee": 100000,
            "price_per_kbyte": 100000
          }
        ],[
          100,{
            "fee": 100000
          }
        ],[
          101,{
            "fee": 0
          }
        ],[
          102,{
            "fee": 0
          }
        ],[
          103,{
            "fee": 0
          }
        ],[
          104,{
            "fee": 0
          }
        ],[
          105,{
            "fee": 0
          }
        ],[
          106,{
            "fee": 0
          }
        ],[
          107,{
            "fee": 0
          }
        ],[
          108,{
            "fee": 0
          }
        ],[
          109,{
            "fee": 0
          }
        ],[
          110,{
            "fee": 0
          }
        ],[
          111,{
            "fee": 0
          }
        ],[
          112,{
            "fee": 0
          }
        ],[
          113,{
            "fee": 0
          }
        ],[
          114,{
            "fee": 0
          }
        ],[
          115,{
            "fee": 0
          }
        ],[
          116,{
            "fee": 0
          }
        ],[
          117,{
            "fee": 0
          }
        ],[
          118,{
            "fee": 0
          }
        ],[
          119,{
            "fee": 0
          }
        ],[
          120,{
            "fee": 100000
          }
        ],[
          121,{
            "fee": 100000
          }
        ],[
          122,{
            "fee": 100000
          }
        ],[
          123,{
            "fee": 500000000
          }
        ]
      ],
      "scale": 10000
    },
    "block_interval": 3,
    "maintenance_interval": 600,
    "maintenance_skip_slots": 3,
    "committee_proposal_review_period": 600,
    "maximum_transaction_size": 2048,
    "maximum_block_size": 1228800000,
    "maximum_time_until_expiration": 86400,
    "maximum_proposal_lifetime": 2419200,
    "maximum_asset_whitelist_authorities": 10,
    "maximum_asset_feed_publishers": 10,
    "maximum_witness_count": 1001,
    "maximum_committee_count": 1001,
    "maximum_authority_membership": 10,
    "reserve_percent_of_fee": 2000,
    "network_percent_of_fee": 2000,
    "lifetime_referrer_percent_of_fee": 3000,
    "cashback_vesting_period_seconds": 31536000,
    "cashback_vesting_threshold": 10000000,
    "count_non_member_votes": true,
    "allow_non_member_whitelists": false,
    "witness_pay_per_block": 1000000,
    "worker_budget_per_day": "50000000000",
    "max_predicate_opcode": 1,
    "fee_liquidation_threshold": 10000000,
    "accounts_per_fee_scale": 1000,
    "account_fee_scale_bitshifts": 4,
    "max_authority_depth": 2,
    "witness_schedule_algorithm": 1,
    "min_round_delay": 0,
    "max_round_delay": 600,
    "min_time_per_commit_move": 0,
    "max_time_per_commit_move": 600,
    "min_time_per_reveal_move": 0,
    "max_time_per_reveal_move": 600,
    "rake_fee_percentage": 300,
    "maximum_registration_deadline": 2592000,
    "maximum_players_in_tournament": 256,
    "maximum_tournament_whitelist_length": 1000,
    "maximum_tournament_start_time_in_future": 2419200,
    "maximum_tournament_start_delay": 604800,
    "maximum_tournament_number_of_wins": 100,
    "extensions": {
      "sweeps_distribution_percentage": 200,
      "sweeps_distribution_asset": "1.3.0",
      "sweeps_vesting_accumulator_account": "1.2.0",
      "gpos_period": 15552000,
      "gpos_subperiod": 2592000,
      "gpos_period_start": 1624928400,
      "gpos_vesting_lockin_period": 2592000,
      "rbac_max_permissions_per_account": 5,
      "rbac_max_account_authority_lifetime": 15552000,
      "rbac_max_authorities_per_permission": 15,
      "account_roles_max_per_account": 20,
      "account_roles_max_lifetime": 31536000,
      "son_vesting_amount": 5000000,
      "son_vesting_period": 172800,
      "son_pay_max": 20000000,
      "son_pay_time": 86400,
      "son_deregister_time": 1200,
      "son_heartbeat_frequency": 120,
      "son_down_time": 360,
      "son_bitcoin_min_tx_confirmations": 1,
      "son_account": "1.2.19",
      "btc_asset": "1.3.1",
      "maximum_son_count": 15,
      "hbd_asset": "1.3.2",
      "hive_asset": "1.3.3"
    }
  },
  "next_available_vote_id": 54,
  "active_committee_members": [
    "1.5.0",
    "1.5.1",
    "1.5.2",
    "1.5.3",
    "1.5.4",
    "1.5.5",
    "1.5.6",
    "1.5.7",
    "1.5.8",
    "1.5.9",
    "1.5.10"
  ],
  "active_witnesses": [
    "1.6.1",
    "1.6.2",
    "1.6.3",
    "1.6.4",
    "1.6.5",
    "1.6.6",
    "1.6.7",
    "1.6.8",
    "1.6.9",
    "1.6.10",
    "1.6.11"
  ],
  "active_sons": [{
      "son_id": "1.33.5",
      "weight": 1,
      "signing_key": "TEST7mtTyM2rD18xDTtLTxWhq6W6zFgAgPFu9KHSFNsfWJXZNT8Wc8",
      "sidechain_public_keys": [[
          "bitcoin",
          "02ef0d79bfdb99ab0be674b1d5d06c24debd74bffdc28d466633d6668cc281cccf"
        ],[
          "peerplays",
          "TEST7mtTyM2rD18xDTtLTxWhq6W6zFgAgPFu9KHSFNsfWJXZNT8Wc8"
        ],[
          "hive",
          "sonaccount06"
        ]
      ]
    },{
      "son_id": "1.33.11",
      "weight": 1,
      "signing_key": "TEST6z33kHxQxyGvFWfpAnL3X3MvLtPEBknkNeFFJyk63PvRtaN1Xo",
      "sidechain_public_keys": [[
          "bitcoin",
          "03df2462a5a2f681a3896f61964a65566ff77448be9a55a6da18506fd9c6c051c1"
        ],[
          "peerplays",
          "TEST6z33kHxQxyGvFWfpAnL3X3MvLtPEBknkNeFFJyk63PvRtaN1Xo"
        ],[
          "hive",
          "sonaccount12"
        ]
      ]
    },{
      "son_id": "1.33.2",
      "weight": 1,
      "signing_key": "TEST6xdp7MrEPnaNK9GuF3KTeTizgGN6JC5nPmxx81higFepSZ8N7r",
      "sidechain_public_keys": [[
          "bitcoin",
          "025f7cfda933516fd590c5a34ad4a68e3143b6f4155a64b3aab2c55fb851150f61"
        ],[
          "peerplays",
          "TEST6xdp7MrEPnaNK9GuF3KTeTizgGN6JC5nPmxx81higFepSZ8N7r"
        ],[
          "hive",
          "sonaccount03"
        ]
      ]
    },{
      "son_id": "1.33.13",
      "weight": 1,
      "signing_key": "TEST5e4HXhA4yBEGzaXVyjuVabKhG1qGghi6rypvq5fLxAmU9XLRHT",
      "sidechain_public_keys": [[
          "bitcoin",
          "0287bcbd4f5d357f89a86979b386402445d7e9a5dccfd16146d1d2ab0dc2c32ae8"
        ],[
          "peerplays",
          "TEST5e4HXhA4yBEGzaXVyjuVabKhG1qGghi6rypvq5fLxAmU9XLRHT"
        ],[
          "hive",
          "sonaccount14"
        ]
      ]
    },{
      "son_id": "1.33.0",
      "weight": 1,
      "signing_key": "TEST8TCQFzyYDp3DPgWZ24261fMPSCzXxVyoF3miWeTj6JTi2DZdrL",
      "sidechain_public_keys": [[
          "bitcoin",
          "03456772301e221026269d3095ab5cb623fc239835b583ae4632f99a15107ef275"
        ],[
          "peerplays",
          "TEST8TCQFzyYDp3DPgWZ24261fMPSCzXxVyoF3miWeTj6JTi2DZdrL"
        ],[
          "hive",
          "sonaccount01"
        ]
      ]
    },{
      "son_id": "1.33.1",
      "weight": 1,
      "signing_key": "TEST82qv1LKFvwVKD9pg5JQf6qqwLcoeqUniQjWJ3wKTodyWa7gHUs",
      "sidechain_public_keys": [[
          "bitcoin",
          "02d67c26cf20153fe7625ca1454222d3b3aeb53b122d8a0f7d32a3dd4b2c2016f4"
        ],[
          "peerplays",
          "TEST82qv1LKFvwVKD9pg5JQf6qqwLcoeqUniQjWJ3wKTodyWa7gHUs"
        ],[
          "hive",
          "sonaccount02"
        ]
      ]
    },{
      "son_id": "1.33.3",
      "weight": 1,
      "signing_key": "TEST55j32Up75gHCxJBPN18vEytL9anDgEVFtsaCii38keGQG71X22",
      "sidechain_public_keys": [[
          "bitcoin",
          "0228155bb1ddcd11c7f14a2752565178023aa963f84ea6b6a052bddebad6fe9866"
        ],[
          "peerplays",
          "TEST55j32Up75gHCxJBPN18vEytL9anDgEVFtsaCii38keGQG71X22"
        ],[
          "hive",
          "sonaccount04"
        ]
      ]
    },{
      "son_id": "1.33.4",
      "weight": 1,
      "signing_key": "TEST68bX5bB16GkEAig6w2WTh9NbM9nHa66CemnDRx2njRY9bbWXhU",
      "sidechain_public_keys": [[
          "bitcoin",
          "037500441cfb4484da377073459511823b344f1ef0d46bac1efd4c7c466746f666"
        ],[
          "peerplays",
          "TEST68bX5bB16GkEAig6w2WTh9NbM9nHa66CemnDRx2njRY9bbWXhU"
        ],[
          "hive",
          "sonaccount05"
        ]
      ]
    },{
      "son_id": "1.33.6",
      "weight": 1,
      "signing_key": "TEST7RMDnipLkFaQ4vtDyVvgyCedRoxyT9JWpAoM9mrE7rwVSyezoB",
      "sidechain_public_keys": [[
          "bitcoin",
          "0317941e4219548682fb8d8e172f0a8ce4d83ce21272435c85d598558c8e060b7f"
        ],[
          "peerplays",
          "TEST7RMDnipLkFaQ4vtDyVvgyCedRoxyT9JWpAoM9mrE7rwVSyezoB"
        ],[
          "hive",
          "sonaccount07"
        ]
      ]
    },{
      "son_id": "1.33.7",
      "weight": 1,
      "signing_key": "TEST51nSJ2q1C9htnYWfTv73JxEc4nBWPNxJtUGPGpD4XwxeLzAd8t",
      "sidechain_public_keys": [[
          "bitcoin",
          "0266065b27f7e3d3ad45b471b1cd4e02de73fc4737dc2679915a45e293c5adcf84"
        ],[
          "peerplays",
          "TEST51nSJ2q1C9htnYWfTv73JxEc4nBWPNxJtUGPGpD4XwxeLzAd8t"
        ],[
          "hive",
          "sonaccount08"
        ]
      ]
    },{
      "son_id": "1.33.8",
      "weight": 1,
      "signing_key": "TEST8EmMMvQdAPzcnxymRUpbYdg8fArUY473QosCQpuPtWXxXtoNp4",
      "sidechain_public_keys": [[
          "bitcoin",
          "023821cc3da7be9e8cdceb8f146e9ddd78a9519875ecc5b42fe645af690544bccf"
        ],[
          "peerplays",
          "TEST8EmMMvQdAPzcnxymRUpbYdg8fArUY473QosCQpuPtWXxXtoNp4"
        ],[
          "hive",
          "sonaccount09"
        ]
      ]
    },{
      "son_id": "1.33.9",
      "weight": 1,
      "signing_key": "TEST5815xbKy73Bx1LJWW1jg7GshWSEFWub3uoiEFP7FtP6z4YZtkU",
      "sidechain_public_keys": [[
          "bitcoin",
          "0229ff2b2106b76c27c393e82d71c20eec32bcf1f0cf1a9aca8a237269a67ff3e5"
        ],[
          "peerplays",
          "TEST5815xbKy73Bx1LJWW1jg7GshWSEFWub3uoiEFP7FtP6z4YZtkU"
        ],[
          "hive",
          "sonaccount10"
        ]
      ]
    },{
      "son_id": "1.33.10",
      "weight": 1,
      "signing_key": "TEST61qgG2v6JArygFiQCKypymxhBqg1wKmmbdkHeNkXhYDvkZmBtY",
      "sidechain_public_keys": [[
          "bitcoin",
          "024d113381cc09deb8a6da62e0470644d1a06de82be2725b5052668c8845a4a8da"
        ],[
          "peerplays",
          "TEST61qgG2v6JArygFiQCKypymxhBqg1wKmmbdkHeNkXhYDvkZmBtY"
        ],[
          "hive",
          "sonaccount11"
        ]
      ]
    },{
      "son_id": "1.33.12",
      "weight": 1,
      "signing_key": "TEST55eCWenoKmZct5YvUYv7aphMmSVkroZTJZWFHGTVj8r8bKEPMd",
      "sidechain_public_keys": [[
          "bitcoin",
          "02bafba3096f546cc5831ce1e49ba7142478a659f2d689bbc70ed37235255172a8"
        ],[
          "peerplays",
          "TEST55eCWenoKmZct5YvUYv7aphMmSVkroZTJZWFHGTVj8r8bKEPMd"
        ],[
          "hive",
          "sonaccount13"
        ]
      ]
    },{
      "son_id": "1.33.14",
      "weight": 1,
      "signing_key": "TEST89qMuZejYeeGvjr3bMEcGyvhD4dyUchmxbLNUBFbPodqJKJPZc",
      "sidechain_public_keys": [[
          "bitcoin",
          "02053859d76aa375d6f343a60e3678e906c008015e32fe4712b1fd2b26473bdd73"
        ],[
          "peerplays",
          "TEST89qMuZejYeeGvjr3bMEcGyvhD4dyUchmxbLNUBFbPodqJKJPZc"
        ],[
          "hive",
          "sonaccount15"
        ]
      ]
    }
  ]
}
unlocked >>>
I see the same status today: ``` "total_txs_signed": 0, "txs_signed": 4, ``` ``` "time": "2021-07-19T12:17:27", "current_witness": "1.6.4", "next_maintenance_time": "2021-07-19T12:20:00", "last_budget_time": "2021-07-19T12:10:00", "witness_budget": 0, "last_son_payout_time": "2020-10-28T00:00:00", ``` ``` "son_vesting_amount": 5000000, "son_vesting_period": 172800, "son_pay_max": 20000000, "son_pay_time": 86400, "son_deregister_time": 1200, "son_heartbeat_frequency": 120, "son_down_time": 360, "son_bitcoin_min_tx_confirmations": 1, "son_account": "1.2.19", ``` ``` unlocked >>> get_dynamic_global_properties get_dynamic_global_properties { "id": "2.1.0", "head_block_number": 161995, "head_block_id": "000278cb147f0f82598be0248cb74e4b0068950d", "time": "2021-07-19T12:17:27", "current_witness": "1.6.4", "next_maintenance_time": "2021-07-19T12:20:00", "last_budget_time": "2021-07-19T12:10:00", "witness_budget": 0, "last_son_payout_time": "2020-10-28T00:00:00", "son_budget": 0, "accounts_registered_this_interval": 0, "recently_missed_count": 0, "current_aslot": 3983019, "recent_slots_filled": "340282366920938463463374607431768211455", "dynamic_flags": 0, "last_irreversible_block_num": 161988 } unlocked >>> get_object 2.25.7 get_object 2.25.7 [{ "id": "2.25.7", "owner": "1.33.7", "total_txs_signed": 0, "txs_signed": 4, "total_voted_time": 492600, "total_downtime": 0, "current_interval_downtime": 0, "last_down_timestamp": "1970-01-01T00:00:00", "last_active_timestamp": "2021-07-19T12:16:05", "deregistered_timestamp": "1970-01-01T00:00:00", "total_sidechain_txs_reported": 4, "sidechain_txs_reported": 4 } ] unlocked >>> get_global_properties get_global_properties { "id": "2.0.0", "parameters": { "current_fees": { "parameters": [[ 0,{ "fee": 2000000, "price_per_kbyte": 1000000 } ],[ 1,{ "fee": 500000 } ],[ 2,{ "fee": 0 } ],[ 3,{ "fee": 2000000 } ],[ 4,{} ],[ 5,{ "basic_fee": 500000, "premium_fee": 200000000, "price_per_kbyte": 100000 } ],[ 6,{ "fee": 2000000, "price_per_kbyte": 100000 } ],[ 7,{ "fee": 300000 } ],[ 8,{ "membership_annual_fee": 200000000, "membership_lifetime_fee": 1000000000 } ],[ 9,{ "fee": 50000000 } ],[ 10,{ "symbol3": "50000000000", "symbol4": "30000000000", "long_symbol": 500000000, "price_per_kbyte": 10 } ],[ 11,{ "fee": 50000000, "price_per_kbyte": 10 } ],[ 12,{ "fee": 50000000 } ],[ 13,{ "fee": 50000000 } ],[ 14,{ "fee": 2000000, "price_per_kbyte": 100000 } ],[ 15,{ "fee": 2000000 } ],[ 16,{ "fee": 100000 } ],[ 17,{ "fee": 10000000 } ],[ 18,{ "fee": 50000000 } ],[ 19,{ "fee": 100000 } ],[ 20,{ "fee": 500000000 } ],[ 21,{ "fee": 2000000 } ],[ 22,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 23,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 24,{ "fee": 100000 } ],[ 25,{ "fee": 100000 } ],[ 26,{ "fee": 100000 } ],[ 27,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 28,{ "fee": 0 } ],[ 29,{ "fee": 500000000 } ],[ 30,{ "fee": 2000000 } ],[ 31,{ "fee": 100000 } ],[ 32,{ "fee": 100000 } ],[ 33,{ "fee": 2000000 } ],[ 34,{ "fee": 500000000 } ],[ 35,{ "fee": 100000, "price_per_kbyte": 10 } ],[ 36,{ "fee": 100000 } ],[ 37,{} ],[ 38,{ "fee": 2000000, "price_per_kbyte": 10 } ],[ 39,{ "fee": 500000, "price_per_output": 500000 } ],[ 40,{ "fee": 500000, "price_per_output": 500000 } ],[ 41,{ "fee": 500000 } ],[ 42,{} ],[ 43,{ "fee": 2000000 } ],[ 44,{} ],[ 45,{ "fee": 100000 } ],[ 46,{ "fee": 100000 } ],[ 47,{ "fee": 100000 } ],[ 48,{ "fee": 50000000 } ],[ 49,{ "distribution_base_fee": 0, "distribution_fee_per_holder": 0 } ],[ 50,{} ],[ 51,{ "fee": 100000 } ],[ 52,{ "fee": 100000 } ],[ 53,{ "fee": 100000 } ],[ 54,{ "fee": 100000 } ],[ 55,{ "fee": 100000 } ],[ 56,{ "fee": 100000 } ],[ 57,{ "fee": 100000 } ],[ 58,{ "fee": 100000 } ],[ 59,{ "fee": 100000 } ],[ 60,{ "fee": 100000 } ],[ 61,{ "fee": 100000 } ],[ 62,{ "fee": 100000 } ],[ 63,{ "fee": 100000 } ],[ 64,{} ],[ 65,{} ],[ 66,{ "fee": 100000 } ],[ 67,{} ],[ 68,{ "fee": 100000 } ],[ 69,{} ],[ 70,{ "fee": 100000 } ],[ 71,{ "fee": 100000 } ],[ 72,{ "fee": 100000 } ],[ 73,{ "fee": 100000 } ],[ 74,{ "fee": 100000 } ],[ 75,{} ],[ 76,{} ],[ 77,{ "lottery_asset": 2000000, "price_per_kbyte": 10 } ],[ 78,{ "fee": 0 } ],[ 79,{ "fee": 0 } ],[ 80,{ "fee": 0 } ],[ 81,{ "fee": 2000000 } ],[ 82,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 83,{ "fee": 100000 } ],[ 84,{ "fee": 100000 } ],[ 85,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 86,{ "fee": 100000 } ],[ 87,{ "fee": 100000 } ],[ 88,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 89,{ "fee": 100000 } ],[ 90,{ "fee": 100000 } ],[ 91,{ "fee": 0 } ],[ 92,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 93,{ "fee": 100000 } ],[ 94,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 95,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 96,{ "fee": 100000 } ],[ 97,{ "fee": 100000 } ],[ 98,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 99,{ "fee": 100000, "price_per_kbyte": 100000 } ],[ 100,{ "fee": 100000 } ],[ 101,{ "fee": 0 } ],[ 102,{ "fee": 0 } ],[ 103,{ "fee": 0 } ],[ 104,{ "fee": 0 } ],[ 105,{ "fee": 0 } ],[ 106,{ "fee": 0 } ],[ 107,{ "fee": 0 } ],[ 108,{ "fee": 0 } ],[ 109,{ "fee": 0 } ],[ 110,{ "fee": 0 } ],[ 111,{ "fee": 0 } ],[ 112,{ "fee": 0 } ],[ 113,{ "fee": 0 } ],[ 114,{ "fee": 0 } ],[ 115,{ "fee": 0 } ],[ 116,{ "fee": 0 } ],[ 117,{ "fee": 0 } ],[ 118,{ "fee": 0 } ],[ 119,{ "fee": 0 } ],[ 120,{ "fee": 100000 } ],[ 121,{ "fee": 100000 } ],[ 122,{ "fee": 100000 } ],[ 123,{ "fee": 500000000 } ] ], "scale": 10000 }, "block_interval": 3, "maintenance_interval": 600, "maintenance_skip_slots": 3, "committee_proposal_review_period": 600, "maximum_transaction_size": 2048, "maximum_block_size": 1228800000, "maximum_time_until_expiration": 86400, "maximum_proposal_lifetime": 2419200, "maximum_asset_whitelist_authorities": 10, "maximum_asset_feed_publishers": 10, "maximum_witness_count": 1001, "maximum_committee_count": 1001, "maximum_authority_membership": 10, "reserve_percent_of_fee": 2000, "network_percent_of_fee": 2000, "lifetime_referrer_percent_of_fee": 3000, "cashback_vesting_period_seconds": 31536000, "cashback_vesting_threshold": 10000000, "count_non_member_votes": true, "allow_non_member_whitelists": false, "witness_pay_per_block": 1000000, "worker_budget_per_day": "50000000000", "max_predicate_opcode": 1, "fee_liquidation_threshold": 10000000, "accounts_per_fee_scale": 1000, "account_fee_scale_bitshifts": 4, "max_authority_depth": 2, "witness_schedule_algorithm": 1, "min_round_delay": 0, "max_round_delay": 600, "min_time_per_commit_move": 0, "max_time_per_commit_move": 600, "min_time_per_reveal_move": 0, "max_time_per_reveal_move": 600, "rake_fee_percentage": 300, "maximum_registration_deadline": 2592000, "maximum_players_in_tournament": 256, "maximum_tournament_whitelist_length": 1000, "maximum_tournament_start_time_in_future": 2419200, "maximum_tournament_start_delay": 604800, "maximum_tournament_number_of_wins": 100, "extensions": { "sweeps_distribution_percentage": 200, "sweeps_distribution_asset": "1.3.0", "sweeps_vesting_accumulator_account": "1.2.0", "gpos_period": 15552000, "gpos_subperiod": 2592000, "gpos_period_start": 1624928400, "gpos_vesting_lockin_period": 2592000, "rbac_max_permissions_per_account": 5, "rbac_max_account_authority_lifetime": 15552000, "rbac_max_authorities_per_permission": 15, "account_roles_max_per_account": 20, "account_roles_max_lifetime": 31536000, "son_vesting_amount": 5000000, "son_vesting_period": 172800, "son_pay_max": 20000000, "son_pay_time": 86400, "son_deregister_time": 1200, "son_heartbeat_frequency": 120, "son_down_time": 360, "son_bitcoin_min_tx_confirmations": 1, "son_account": "1.2.19", "btc_asset": "1.3.1", "maximum_son_count": 15, "hbd_asset": "1.3.2", "hive_asset": "1.3.3" } }, "next_available_vote_id": 54, "active_committee_members": [ "1.5.0", "1.5.1", "1.5.2", "1.5.3", "1.5.4", "1.5.5", "1.5.6", "1.5.7", "1.5.8", "1.5.9", "1.5.10" ], "active_witnesses": [ "1.6.1", "1.6.2", "1.6.3", "1.6.4", "1.6.5", "1.6.6", "1.6.7", "1.6.8", "1.6.9", "1.6.10", "1.6.11" ], "active_sons": [{ "son_id": "1.33.5", "weight": 1, "signing_key": "TEST7mtTyM2rD18xDTtLTxWhq6W6zFgAgPFu9KHSFNsfWJXZNT8Wc8", "sidechain_public_keys": [[ "bitcoin", "02ef0d79bfdb99ab0be674b1d5d06c24debd74bffdc28d466633d6668cc281cccf" ],[ "peerplays", "TEST7mtTyM2rD18xDTtLTxWhq6W6zFgAgPFu9KHSFNsfWJXZNT8Wc8" ],[ "hive", "sonaccount06" ] ] },{ "son_id": "1.33.11", "weight": 1, "signing_key": "TEST6z33kHxQxyGvFWfpAnL3X3MvLtPEBknkNeFFJyk63PvRtaN1Xo", "sidechain_public_keys": [[ "bitcoin", "03df2462a5a2f681a3896f61964a65566ff77448be9a55a6da18506fd9c6c051c1" ],[ "peerplays", "TEST6z33kHxQxyGvFWfpAnL3X3MvLtPEBknkNeFFJyk63PvRtaN1Xo" ],[ "hive", "sonaccount12" ] ] },{ "son_id": "1.33.2", "weight": 1, "signing_key": "TEST6xdp7MrEPnaNK9GuF3KTeTizgGN6JC5nPmxx81higFepSZ8N7r", "sidechain_public_keys": [[ "bitcoin", "025f7cfda933516fd590c5a34ad4a68e3143b6f4155a64b3aab2c55fb851150f61" ],[ "peerplays", "TEST6xdp7MrEPnaNK9GuF3KTeTizgGN6JC5nPmxx81higFepSZ8N7r" ],[ "hive", "sonaccount03" ] ] },{ "son_id": "1.33.13", "weight": 1, "signing_key": "TEST5e4HXhA4yBEGzaXVyjuVabKhG1qGghi6rypvq5fLxAmU9XLRHT", "sidechain_public_keys": [[ "bitcoin", "0287bcbd4f5d357f89a86979b386402445d7e9a5dccfd16146d1d2ab0dc2c32ae8" ],[ "peerplays", "TEST5e4HXhA4yBEGzaXVyjuVabKhG1qGghi6rypvq5fLxAmU9XLRHT" ],[ "hive", "sonaccount14" ] ] },{ "son_id": "1.33.0", "weight": 1, "signing_key": "TEST8TCQFzyYDp3DPgWZ24261fMPSCzXxVyoF3miWeTj6JTi2DZdrL", "sidechain_public_keys": [[ "bitcoin", "03456772301e221026269d3095ab5cb623fc239835b583ae4632f99a15107ef275" ],[ "peerplays", "TEST8TCQFzyYDp3DPgWZ24261fMPSCzXxVyoF3miWeTj6JTi2DZdrL" ],[ "hive", "sonaccount01" ] ] },{ "son_id": "1.33.1", "weight": 1, "signing_key": "TEST82qv1LKFvwVKD9pg5JQf6qqwLcoeqUniQjWJ3wKTodyWa7gHUs", "sidechain_public_keys": [[ "bitcoin", "02d67c26cf20153fe7625ca1454222d3b3aeb53b122d8a0f7d32a3dd4b2c2016f4" ],[ "peerplays", "TEST82qv1LKFvwVKD9pg5JQf6qqwLcoeqUniQjWJ3wKTodyWa7gHUs" ],[ "hive", "sonaccount02" ] ] },{ "son_id": "1.33.3", "weight": 1, "signing_key": "TEST55j32Up75gHCxJBPN18vEytL9anDgEVFtsaCii38keGQG71X22", "sidechain_public_keys": [[ "bitcoin", "0228155bb1ddcd11c7f14a2752565178023aa963f84ea6b6a052bddebad6fe9866" ],[ "peerplays", "TEST55j32Up75gHCxJBPN18vEytL9anDgEVFtsaCii38keGQG71X22" ],[ "hive", "sonaccount04" ] ] },{ "son_id": "1.33.4", "weight": 1, "signing_key": "TEST68bX5bB16GkEAig6w2WTh9NbM9nHa66CemnDRx2njRY9bbWXhU", "sidechain_public_keys": [[ "bitcoin", "037500441cfb4484da377073459511823b344f1ef0d46bac1efd4c7c466746f666" ],[ "peerplays", "TEST68bX5bB16GkEAig6w2WTh9NbM9nHa66CemnDRx2njRY9bbWXhU" ],[ "hive", "sonaccount05" ] ] },{ "son_id": "1.33.6", "weight": 1, "signing_key": "TEST7RMDnipLkFaQ4vtDyVvgyCedRoxyT9JWpAoM9mrE7rwVSyezoB", "sidechain_public_keys": [[ "bitcoin", "0317941e4219548682fb8d8e172f0a8ce4d83ce21272435c85d598558c8e060b7f" ],[ "peerplays", "TEST7RMDnipLkFaQ4vtDyVvgyCedRoxyT9JWpAoM9mrE7rwVSyezoB" ],[ "hive", "sonaccount07" ] ] },{ "son_id": "1.33.7", "weight": 1, "signing_key": "TEST51nSJ2q1C9htnYWfTv73JxEc4nBWPNxJtUGPGpD4XwxeLzAd8t", "sidechain_public_keys": [[ "bitcoin", "0266065b27f7e3d3ad45b471b1cd4e02de73fc4737dc2679915a45e293c5adcf84" ],[ "peerplays", "TEST51nSJ2q1C9htnYWfTv73JxEc4nBWPNxJtUGPGpD4XwxeLzAd8t" ],[ "hive", "sonaccount08" ] ] },{ "son_id": "1.33.8", "weight": 1, "signing_key": "TEST8EmMMvQdAPzcnxymRUpbYdg8fArUY473QosCQpuPtWXxXtoNp4", "sidechain_public_keys": [[ "bitcoin", "023821cc3da7be9e8cdceb8f146e9ddd78a9519875ecc5b42fe645af690544bccf" ],[ "peerplays", "TEST8EmMMvQdAPzcnxymRUpbYdg8fArUY473QosCQpuPtWXxXtoNp4" ],[ "hive", "sonaccount09" ] ] },{ "son_id": "1.33.9", "weight": 1, "signing_key": "TEST5815xbKy73Bx1LJWW1jg7GshWSEFWub3uoiEFP7FtP6z4YZtkU", "sidechain_public_keys": [[ "bitcoin", "0229ff2b2106b76c27c393e82d71c20eec32bcf1f0cf1a9aca8a237269a67ff3e5" ],[ "peerplays", "TEST5815xbKy73Bx1LJWW1jg7GshWSEFWub3uoiEFP7FtP6z4YZtkU" ],[ "hive", "sonaccount10" ] ] },{ "son_id": "1.33.10", "weight": 1, "signing_key": "TEST61qgG2v6JArygFiQCKypymxhBqg1wKmmbdkHeNkXhYDvkZmBtY", "sidechain_public_keys": [[ "bitcoin", "024d113381cc09deb8a6da62e0470644d1a06de82be2725b5052668c8845a4a8da" ],[ "peerplays", "TEST61qgG2v6JArygFiQCKypymxhBqg1wKmmbdkHeNkXhYDvkZmBtY" ],[ "hive", "sonaccount11" ] ] },{ "son_id": "1.33.12", "weight": 1, "signing_key": "TEST55eCWenoKmZct5YvUYv7aphMmSVkroZTJZWFHGTVj8r8bKEPMd", "sidechain_public_keys": [[ "bitcoin", "02bafba3096f546cc5831ce1e49ba7142478a659f2d689bbc70ed37235255172a8" ],[ "peerplays", "TEST55eCWenoKmZct5YvUYv7aphMmSVkroZTJZWFHGTVj8r8bKEPMd" ],[ "hive", "sonaccount13" ] ] },{ "son_id": "1.33.14", "weight": 1, "signing_key": "TEST89qMuZejYeeGvjr3bMEcGyvhD4dyUchmxbLNUBFbPodqJKJPZc", "sidechain_public_keys": [[ "bitcoin", "02053859d76aa375d6f343a60e3678e906c008015e32fe4712b1fd2b26473bdd73" ],[ "peerplays", "TEST89qMuZejYeeGvjr3bMEcGyvhD4dyUchmxbLNUBFbPodqJKJPZc" ],[ "hive", "sonaccount15" ] ] } ] } unlocked >>> ```
hbelakon commented 2021-07-26 02:36:16 +00:00 (Migrated from gitlab.com)

@serkixenos please estimate! For now I put 8hr Weight 1

@serkixenos please estimate! For now I put 8hr Weight 1
hbelakon commented 2021-07-26 02:36:25 +00:00 (Migrated from gitlab.com)

changed time estimate to 8h

changed time estimate to 8h
prandnum commented 2021-07-27 18:35:01 +00:00 (Migrated from gitlab.com)

assigned to @sierra19XX

assigned to @sierra19XX
serkixenos commented 2021-07-29 12:41:08 +00:00 (Migrated from gitlab.com)

changed time estimate to 24h

changed time estimate to 24h
prandnum commented 2021-08-09 18:02:36 +00:00 (Migrated from gitlab.com)

mentioned issue is fixed.

unlocked >>> get_object 2.25.3
get_object 2.25.3
[{
    "id": "2.25.3",
    "owner": "1.33.3",
    "total_txs_signed": [[
        "hive",
        3
      ]
    ],
    "txs_signed": [[
        "hive",
        0
      ]
    ],
    "total_voted_time": 190800,
    "total_downtime": 0,
    "current_interval_downtime": 0,
    "last_down_timestamp": "1970-01-01T00:00:00",
    "last_active_timestamp": "2021-08-09T17:59:47",
    "deregistered_timestamp": "1970-01-01T00:00:00",
    "total_sidechain_txs_reported": [[
        "peerplays",
        2
      ],[
        "hive",
        3
      ]
    ],
    "sidechain_txs_reported": [[
        "peerplays",
        2
      ],[
        "hive",
        3
      ]
    ]
  }
]
unlocked >>>

A different bug for sidechain_txs_reported is reported here https://gitlab.com/PBSA/peerplays/-/issues/165

mentioned issue is fixed. ``` unlocked >>> get_object 2.25.3 get_object 2.25.3 [{ "id": "2.25.3", "owner": "1.33.3", "total_txs_signed": [[ "hive", 3 ] ], "txs_signed": [[ "hive", 0 ] ], "total_voted_time": 190800, "total_downtime": 0, "current_interval_downtime": 0, "last_down_timestamp": "1970-01-01T00:00:00", "last_active_timestamp": "2021-08-09T17:59:47", "deregistered_timestamp": "1970-01-01T00:00:00", "total_sidechain_txs_reported": [[ "peerplays", 2 ],[ "hive", 3 ] ], "sidechain_txs_reported": [[ "peerplays", 2 ],[ "hive", 3 ] ] } ] unlocked >>> ``` A different bug for sidechain_txs_reported is reported here https://gitlab.com/PBSA/peerplays/-/issues/165
prandnum (Migrated from gitlab.com) closed this issue 2021-08-09 18:02:36 +00:00
Sign in to join this conversation.
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: Peerplays_Blockchain/peerplays_migrated#146
No description provided.