Post
Topic
Board Pools (Altcoins)
Re: [ANN] profit switching auto-exchanging pool - middlecoin.com
by
IZON
on 21/12/2013, 22:46:31 UTC
True. Replace my["paidOut"] with my.get("paidOut", 0)
[/quote]

Ty.

And for everyone else that uses this script.
Change row 115-119 into this:

Code:
    write("Total paid", my.get("paidOut", 0),mbtc)
    write("Total unpaid ", my.get("immatureBalance", 0) + my.get("unexchangedBalance", 0) + my.get("bitcoinBalance", 0), mbtc)
    write("Exchanged    ", my.get("bitcoinBalance", 0),mbtc)
    write("Unexchanged  ", my.get("unexchangedBalance", 0),mbtc)
    write("Immature     ", my.get("immatureBalance", 0),mbtc)

Should be about right ^^
Seems to be working for me atleast.


If I want it to say EURO (€) Can I just change all values that says USD to EUR and the script automatically takes the euro values from btce?