Bitcoin Forum
May 11, 2024, 08:45:24 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 [117] 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 ... 1035 »
  Print  
Author Topic: [ANN] [MINT] Mintcoin (POS / 5%) [NO ICO] [Fair distro, community maintained]  (Read 1369739 times)
ScroogeD
Member
**
Offline Offline

Activity: 70
Merit: 10

█ Scrooge D Silver █


View Profile
February 16, 2014, 08:02:34 PM
 #2321

Quote from: Newaltex Admin
I'm closing the exchange, Please close your orders and withdraw your money in 48 hours. For withdrawal help email me at admin@newaltex.com

WHY?

Some chinese guy managed to steal over half a bitcoin and I can't figure out how. Also the malleability attack screwed the wallet so bad it shows a negative balance, I've had it with bitcoin.

Seems like https://www.newaltex.com/exchange/mint_btc is shutting down and MintPal will be the only real exchange for now.
Sad to see it happen like this. Good luck for the future admin.

For all of us: Withdraw your Mints from there.

BTC & LTC #DOGE #DRK #HUC #VTC
Blacklist #Maxcoin - Amateur Devs with ignorant JP Morgan Keiser
The trust scores you see are subjective; they will change depending on who you have in your trust list.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715417124
Hero Member
*
Offline Offline

Posts: 1715417124

View Profile Personal Message (Offline)

Ignore
1715417124
Reply with quote  #2

1715417124
Report to moderator
1715417124
Hero Member
*
Offline Offline

Posts: 1715417124

View Profile Personal Message (Offline)

Ignore
1715417124
Reply with quote  #2

1715417124
Report to moderator
1715417124
Hero Member
*
Offline Offline

Posts: 1715417124

View Profile Personal Message (Offline)

Ignore
1715417124
Reply with quote  #2

1715417124
Report to moderator
JonnyBravo
Full Member
***
Offline Offline

Activity: 129
Merit: 100


Owlmeister


View Profile WWW
February 16, 2014, 08:03:33 PM
 #2322

RPC problem; getbalance is broken.

On a mintcoind fresh from git checkout, with synced blockchain:

Code:
someone@somebox:~$ mintcoind listaccounts
{
    "" : 0.00000000,
    "gamebank" : 999999.00000000
}
someone@somebox:~$ mintcoind getbalance gamebank
-9216810327147.70507812
someone@somebox:~$ mintcoind getbalance test
-9216811327146.70507812

This is incorrect. getbalance gamebank should return 999999.0, and getbalance test should return 0.


what os you use? I tried on windows, looks fine to me. It did show my balance.

Yes I see the problem now. The problem only exist if you specific the account name. If you do "mintcoind getbalance", then it shows total correctly, but if you use "mintcoind getbalance acctname" then the displayed number is wrong.

So for your purpose, just use getblance without further arguments, it will be fine.

You don't understand my use case.

I'm a service provider and need this RPC call functional.

Edit: Opened a GitHub issue

If you check coins like Peercoin, there's only functions like getbalance of the whole wallet. You may have several addresses, its own balance usually do not make sense. As when you do a send, the coins may come from multiple of the addresses randomly. You can not say send from this address. Therefore, all you care about is the balance in your wallet in this case. If you want to check each address. Use listaccounts.


getbalance should work with seperate accounts. You can send coins to and from accounts within one wallet, and use getbalance to retrieve the total number of coins from those accounts. I know because I use getbalance regularly with other coins. Many altcoins in fact.

If you're running a service accounts are essential. As someone who has a script that relies on knowing exact account balances on a regular basis I can confirm that if he's unable to get the correct balance from his accounts, then either there's a problem on his end, or with the source.

Indeed Smiley But I've put a workaround in place now for this coin specifically.

Operator of the L8 site family, featuring classic Roulette, Blackjack, Video Poker, Dice and more on your favourite altcoins (CLOAK, DOGE, LTC and more)
matoy
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile WWW
February 16, 2014, 08:05:26 PM
 #2323

[...]
Perfect pool but not enough hash, come on guys ![/color][/size][/b]

coins4everyone is working perfectly buddy... please don't be silly.

Hash with us and mine fresh coins @ http://www.coins4everyone.com
ClausPOLO
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
February 16, 2014, 08:08:18 PM
 #2324

https://cryptsy.freshdesk.com/support/discussions/topics/75906/page/last#post-4000000746


c'mon vote!!!!
valley365
Hero Member
*****
Offline Offline

Activity: 868
Merit: 1003


View Profile
February 16, 2014, 08:11:37 PM
 #2325

RPC problem; getbalance is broken.

On a mintcoind fresh from git checkout, with synced blockchain:

Code:
someone@somebox:~$ mintcoind listaccounts
{
    "" : 0.00000000,
    "gamebank" : 999999.00000000
}
someone@somebox:~$ mintcoind getbalance gamebank
-9216810327147.70507812
someone@somebox:~$ mintcoind getbalance test
-9216811327146.70507812

This is incorrect. getbalance gamebank should return 999999.0, and getbalance test should return 0.


what os you use? I tried on windows, looks fine to me. It did show my balance.

Yes I see the problem now. The problem only exist if you specific the account name. If you do "mintcoind getbalance", then it shows total correctly, but if you use "mintcoind getbalance acctname" then the displayed number is wrong.

So for your purpose, just use getblance without further arguments, it will be fine.

You don't understand my use case.

I'm a service provider and need this RPC call functional.

Edit: Opened a GitHub issue

If you check coins like Peercoin, there's only functions like getbalance of the whole wallet. You may have several addresses, its own balance usually do not make sense. As when you do a send, the coins may come from multiple of the addresses randomly. You can not say send from this address. Therefore, all you care about is the balance in your wallet in this case. If you want to check each address. Use listaccounts.


getbalance should work with seperate accounts. You can send coins to and from accounts within one wallet, and use getbalance to retrieve the total number of coins from those accounts. I know because I use getbalance regularly with other coins. Many altcoins in fact.

If you're running a service accounts are essential. As someone who has a script that relies on knowing exact account balances on a regular basis I can confirm that if he's unable to get the correct balance from his accounts, then either there's a problem on his end, or with the source.

No, these are not separate "accounts", these are different addresses of the same wallet. It is mainly useful to track the receive amount of that address. When you send payout, you have no control where the amount from which address it uses. Sometimes you can see the balance of one address being negative while your whole balance is positive. So it does not make sense to get the balance from each addresses. You have a wallet balance, that's all.

If you are just curious of which balance in which address, then use listaccounts to see them. Again this does not make sense as you may see negative values there.

If you want to track which address you received how much, use the transaction list and filter on that address. This is the proper way to track received amounts.
virtualdn
Legendary
*
Offline Offline

Activity: 1372
Merit: 1093


View Profile
February 16, 2014, 08:30:45 PM
 #2326

How about winning 10,000 MintCoins for free?



http://coinok.pw/scratch/mint

1 BTC = 1 BTC
Linkeex
Member
**
Offline Offline

Activity: 74
Merit: 10


View Profile
February 16, 2014, 08:32:36 PM
 #2327

Please post into this thread for pushing cryptsy to add mintcoin:
https://cryptsy.freshdesk.com/support/discussions/topics/75906


Also just a reminder: Be loud about mintcoin. Post everywhere you can about it Smiley



Also, at the devs: I could offer you my work. I can do webdesign and webdevelopment.
I can also do translation in german.

+++ Informatik-Student würde für Bitcoins alles tun: Javascript, Java, Nodejs, Angularjs, Express, Objective-C, SQL, Webdesign + + +
==> https://bitcointalk.org/index.php?topic=356002.msg3808815#msg3808815
KSGuy
Sr. Member
****
Offline Offline

Activity: 429
Merit: 250



View Profile
February 16, 2014, 08:39:57 PM
 #2328

dang.. https://www.newaltex.com/ is closing
it was only up for a week, maybe 10 days?

not a good thing for MINT
Sparkzor
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 16, 2014, 08:41:07 PM
 #2329

dang.. https://www.newaltex.com/ is closing
it was only up for a week, maybe 10 days?

not a good thing for MINT
Never trusted that site. Sounds really weird that he doesn't know how he lost the coins and that he's closing after 10 days...
KSGuy
Sr. Member
****
Offline Offline

Activity: 429
Merit: 250



View Profile
February 16, 2014, 08:47:15 PM
 #2330

dang.. https://www.newaltex.com/ is closing
it was only up for a week, maybe 10 days?

not a good thing for MINT
Never trusted that site. Sounds really weird that he doesn't know how he lost the coins and that he's closing after 10 days...
I made a few trades the first day but he did seem like he just through the site up and coded it on his own.
Apparently the security wasn't on par, the message he posted certainly doesn't fill me with confidence that something really did happen.

Also why does it have to be a "Chinese" guy that "hacked him" how would he even know that..lol
Glad I never left anything of value on the site.
klaczak
Member
**
Offline Offline

Activity: 100
Merit: 10

PL


View Profile
February 16, 2014, 09:35:34 PM
 #2331

https://cryptsy.freshdesk.com/support/discussions/topics/75906/page/last#post-4000000791 

   done

http://www.allcrypt.com/beta/voting.php

   done

                         

mint : MnphWMrtSMNcPjbhmhiNqKgJmEuxXZGsJC
flounderella
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250

Bitcoin Evengelist


View Profile
February 16, 2014, 09:51:49 PM
 #2332

Seriously guys, the wallet is not in good shape. I usually open it every couple of days and for hours there's just no active connection. I've already all the nodes posted in these threads.
Alakazam2000
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
February 16, 2014, 09:54:06 PM
 #2333

URGENT PLEASE READ:

Since Mintcoin has a LARGE amount of coin, it's get a bit tricky to go and exchange it for sathoshi, thats becouse we get a large increase of the value for each satoshi and I think this stops in some way the market. Please ask to the markets to add a MINT-LTC exchange, this would help to get the thing go way more smooth
K0b1
Full Member
***
Offline Offline

Activity: 167
Merit: 100


View Profile
February 16, 2014, 09:56:08 PM
 #2334

I am pretty new for this staff, wondering Is this the time to start mining MINT???
flounderella
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250

Bitcoin Evengelist


View Profile
February 16, 2014, 10:01:55 PM
 #2335

I am pretty new for this staff, wondering Is this the time to start mining MINT???

Where were you last week where it was literally raining mints. This week reward is already half but you still have 4 more weeks to go, so not too late IMO
colinfx
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250


View Profile
February 16, 2014, 10:11:44 PM
 #2336

I am pretty new for this staff, wondering Is this the time to start mining MINT???

It is not too late - block rewards halve again on 20th February, still big rewards to miners for 3 1/2 more weeks
jany8293
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
February 16, 2014, 10:45:06 PM
 #2337

http://www.allcrypt.com/beta/voting.php

   done
koprobo
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 16, 2014, 11:00:03 PM
 #2338

done
Danz0r77
Hero Member
*****
Offline Offline

Activity: 574
Merit: 504


View Profile
February 16, 2014, 11:14:38 PM
 #2339

All the hashpower seems to be concentrated in just 1 or 2 pools at the moment. Maybe we can try spread some out.

We are giving 5000 block finder bonus for the next 24 hours. Will continue this promotion for longer if activity on the pool increases.

http://mint.dogemoon.com

Thanks
K0b1
Full Member
***
Offline Offline

Activity: 167
Merit: 100


View Profile
February 16, 2014, 11:16:36 PM
 #2340

I am pretty new for this staff, wondering Is this the time to start mining MINT???

Where were you last week where it was literally raining mints. This week reward is already half but you still have 4 more weeks to go, so not too late IMO

So I guess now its time for MEGACOIN?
Pages: « 1 ... 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 [117] 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 ... 1035 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!