• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

How can I know my Payment queue position

agulab

New member
Masternode Owner/Operator
Hello, I'm using DashCentral to see my masternode Payment queue position, but it varies too much. On each F5 I see I'm in position 371, then 369, then 0, then 444, then 371 again...
I see some positions repeat, so I assume my masternode is more or less in position 370.

The thing is I started to wonder how I could ask my masternode directly in which position it is in the queue, and can't find the command to do it.
There must be a way, since DashCentral gets that info somehow...

can someone help me find the right command por that?

Thanks!
 
There is a tool by moocowmoo that will show you your queue position. His github project is called dashman.

I've stolen his queue calculation for my own script:

Code:
#!/bin/bash

#shows ranks of your masternodes defined in ~/.dashcore/masternodes.conf
#or shows ranks of masternodes specified as arguments. 

function cache_output(){
  # cached output
  FILE=$1
  # command to cache
  CMD=$2
  OLD=0
  CONTENTS=""
  # is cache older than 1 minute?
  if [ -e $FILE ]; then
      OLD=$(find $FILE -mmin +1 -ls | wc -l)
      CONTENTS=$(cat $FILE);
  fi
  # is cache empty or older than 1 minute? rebuild
  if [ -z "$CONTENTS" ] || [ "$OLD" -gt 0 ]; then
    CONTENTS=$(eval $CMD)
    echo "$CONTENTS" > $FILE
  fi
  echo "$CONTENTS"
}

getrank()
{
  MNADDR=$1
  MASTERNODE_BIND_IP=$1
  DASH_CLI=dash-cli
  MN_QUEUE_IN_SELECTION=0
  MN_QUEUE_LENGTH=0
  MN_QUEUE_POSITION=0
  NOW=$(date +%s)
  MN_LIST="$(cache_output /tmp/mnlist_cache '$DASH_CLI masternodelist full 2>/dev/null')"
  SORTED_MN_LIST=$(echo "$MN_LIST" | grep -w ENABLED | sed -e 's/[}|{]//' -e 's/"//g' -e 's/,//g' | grep -v ^$ | \
awk ' \
{
    if ($7 == 0) {
        TIME = $6
        print $_ " " TIME
    }
    else {
        xxx = ("'$NOW'" - $7)
        if ( xxx >= $6) {
            TIME = $6
        }
        else {
            TIME = xxx
        }
        print $_ " " TIME
    }
}' |  sort -k10 -n)
  MN_STATUS=$(   echo "$SORTED_MN_LIST" | grep -m1 $MASTERNODE_BIND_IP | awk '{print $2}')
  MN_VISIBLE=$(  echo "$MN_STATUS" | wc -l)
  MN_ENABLED=$(  echo "$SORTED_MN_LIST" | grep -c ENABLED)
  MN_UNHEALTHY=$(echo "$SORTED_MN_LIST" | grep -c EXPIRED)
  MN_TOTAL=$(( $MN_ENABLED + $MN_UNHEALTHY ))
  MN_SYNC_ASSET=$(echo "$MN_SYNC_STATUS" | grep 'Asset' | grep -v ID | awk '{print $2}' | sed -e 's/[",]//g' )
  MN_SYNC_COMPLETE=$(echo "$MN_SYNC_STATUS" | grep 'IsSynced' | grep 'true' | wc -l)
  if [ $MN_VISIBLE -gt 0 ]; then
    MN_QUEUE_LENGTH=$MN_ENABLED
    MN_QUEUE_POSITION=$(echo "$SORTED_MN_LIST" | grep ENABLED | grep -A9999999 $MASTERNODE_BIND_IP | wc -l)
    if [ $MN_QUEUE_POSITION -gt 0 ]; then
      MN_QUEUE_IN_SELECTION=$(( $MN_QUEUE_POSITION <= $(( $MN_QUEUE_LENGTH / 10 )) ))
    fi
  fi
  echo $MN_QUEUE_POSITION/$MN_QUEUE_LENGTH
}

if [ -z "$1" ]; then
  nodes=$(cat ~/.dashcore/masternode.conf|grep -v -e ^\#|awk '{print $1}')
else
  nodes=$@
  if [ -z "$nodes" ]; then
    echo "I didn't find any masternodes defined in your masternode.conf.. either add them there .. or specify what masternodes you'd like to see the rank for."
    echo "eg: $0 178.62.229.218:9999 178.62.231.162:9999"
    echo "eg: $0 d81d94bc10c9cad503cca18ea89868b491ef83d1d53144f3c014d2ea2f65ea80-1"
    exit 1
  fi
fi

for m in $nodes
do
  mnaddr=$(cat ~/.dashcore/masternode.conf |grep -e "^$m "|awk '{print $2}')
  if [ -z "$mnaddr" ];then
    mnaddr=$m
  fi
  rank=$(getrank $mnaddr)
  echo $m $rank $((100*${rank#* }))\%
done|sort -nk3

sorry I'd link you to moocowmoo's code.. but I can't post links yet.
 
Thanks ender_x
I've been hearing too much of dashman, and have been using moocow Slack bot recently to get the real queue position since yesterday, so I'll proceed to install dashman on my mastrenode today.
Thanks for the info!
 
Back
Top