Proofgold Core 0.2.8rc1
Regarding Point 1, I wrote some code that filters out staking with assets below the minimum. In staking.ml:
replace
let rec hlist_stakingassets blkh alpha hl n =
if n > 0 then
match hl with
| HCons((aid,bday,obl,Currency(v)),hr) ->
with
let rec hlist_stakingassets blkh alpha hl n =
let minamt =
if blkh < 5000L then
0L
else if blkh < 16000L then
10000000000L
else if blkh < 18000L then
100000000000L
else if blkh < 20000L then
1000000000000L
else
10000000000000L
in
if n > 0 then
match hl with
| HCons((aid,bday,obl,Currency(v)),hr) when v >= minamt ->
Complete thread:
- Proofgold Core 0.2.8rc1 -
BlakeKeiller,
2021-11-09, 08:51
- Proofgold Core 0.2.8rc1 -
Brown,
2021-11-09, 20:03
- Proofgold Core 0.2.8rc1 -
Brown,
2021-11-11, 09:18
- Proofgold Core 0.2.8rc2 -
BlakeKeiller,
2021-11-13, 14:50
- Proofgold Core 0.2.8rc2 - Brown, 2021-11-15, 11:31
- Proofgold Core 0.2.8rc2 -
BlakeKeiller,
2021-11-13, 14:50
- Proofgold Core 0.2.8rc1 -
Brown,
2021-11-11, 09:18
- Proofgold Core 0.2.8rc1 - Brown, 2021-11-16, 12:09
- Proofgold Core 0.2.8rc1 -
Brown,
2021-11-09, 20:03