I've built another python script for tracking the current budget status.
It's new, but I'm pretty sure I've squashed all the big bugs.
As always, let me know if you run into trouble.
(If you're seeing old proposals, stop your wallet, delete budget.dat, and restart it.
It will pull in an up-to-date copy from the network.)
https://github.com/moocowmoo/dash-budget_state
You'll need dash-cli in your PATH environment variable (and a linux box) for this one to work.
Proposals in red indicate they will not be funded. (There are no partial payouts)
https://github.com/dashpay/dash/blob/master/src/masternode-budget.cpp#L671
Instead, the budget finalization will continue through the remaining proposals, selecting those that can be fully funded.
Enjoy!
It's new, but I'm pretty sure I've squashed all the big bugs.
As always, let me know if you run into trouble.
(If you're seeing old proposals, stop your wallet, delete budget.dat, and restart it.
It will pull in an up-to-date copy from the network.)
https://github.com/moocowmoo/dash-budget_state
You'll need dash-cli in your PATH environment variable (and a linux box) for this one to work.
Code:
export PATH=/path/to/folder/containing_dash-cli:$PATH
# for instance, I keep mine in /home/ubuntu/.dash so I added this to the end of my ~/.bashrc
# export PATH=~/.dash:$PATH
Code:
git clone https://github.com/moocowmoo/dash-budget_state.git
cd dash-budget_state
python dash-budget_state.py
Proposals in red indicate they will not be funded. (There are no partial payouts)
https://github.com/dashpay/dash/blob/master/src/masternode-budget.cpp#L671
Instead, the budget finalization will continue through the remaining proposals, selecting those that can be fully funded.
Enjoy!