Bitcoin Forum
May 09, 2024, 05:56:46 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 »  All
  Print  
Author Topic: [ANN - EXCHANGE] | www.Allcoin.com |DVK RIN added  (Read 35056 times)
allcoin.com (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 06, 2014, 07:28:54 AM
 #21

How do you store your passwords?
Hash like  sha512/md5  Grin

1715234206
Hero Member
*
Offline Offline

Posts: 1715234206

View Profile Personal Message (Offline)

Ignore
1715234206
Reply with quote  #2

1715234206
Report to moderator
"You Asked For Change, We Gave You Coins" -- casascius
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715234206
Hero Member
*
Offline Offline

Posts: 1715234206

View Profile Personal Message (Offline)

Ignore
1715234206
Reply with quote  #2

1715234206
Report to moderator
hover
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile WWW
February 06, 2014, 07:48:02 AM
 #22

Hello.
Pls add hotcoin (HOT)

https://bitcointalk.org/index.php?topic=382947.0

1.08 for linux 32bit(ubuntu) version download link: http://dl.hot-coin.org:90/1.08/hotcoind-ubt.zip
copy *.so files to usr/lib folder.

If you os is 64bit ubuntu, pls run:
sudo apt-get install ia32-libs

thanks.

hover

kenjionline
Full Member
***
Offline Offline

Activity: 443
Merit: 101



View Profile
February 06, 2014, 08:44:04 AM
 #23

+1 vote for add HTC - Hotcoin  Grin
bitideas
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile WWW
February 06, 2014, 09:39:49 AM
 #24

Please add Mooncoin!  I love this coin!

Thanks for your consideration!

Build your Bitcoin Downlines at the Bitcoin Downline Builder!
adir77
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
February 06, 2014, 09:49:11 AM
 #25

+1 for HotCoin

Best Regards
aqlzf123
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 06, 2014, 11:59:08 AM
 #26

I like it very much hotcoin, hoping to add on. thank you.

tylerbrad85
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 06, 2014, 12:01:26 PM
 #27

Please add Karma Coin  Grin
icezi
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
February 06, 2014, 12:43:40 PM
 #28

pls add hotcoin, thanks.
allcoin.com (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 07, 2014, 03:34:12 AM
 #29

I can't register because it thinks my email address is invalid.  When i remove the period (.), then it thinks it is valid.  Please fix it to allow emails with periods.

Had the same problem mate.
Grin the guy who wrote the script is sleeping now ,I'll ask him to correct this soon.
Resolved  Grin

kwasime
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
February 07, 2014, 04:00:04 PM
 #30

check your private message withdrawal issue
allcoin.com (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 07, 2014, 05:23:15 PM
 #31

check your private message withdrawal issue
Done brother.
Withdraw is not completely automatic now,it may take some time if we are asleep.
Thx.

allcoin.com (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 08, 2014, 06:47:04 PM
 #32

Update:
2014/02/09  Some bugs fixed. TOP(topcoin),NUT(nutcoin),QQC(quickquickcoin),PENG(penguincoin) added.

DarkHunter04
Member
**
Offline Offline

Activity: 126
Merit: 11


View Profile
February 08, 2014, 09:05:08 PM
 #33

Nice Exchange Smiley

I want suggest more Security for Withdraws, but then I saw email verification.
Very nice Smiley


Get me withdraw after 3minutes (Nutcoins).


Thanks for this new exchange Smiley
allcoin.com (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 08, 2014, 09:35:49 PM
 #34

[NUT NutCoin] Guys it seems that nutcoind  has some bugs when calling api sendtoaddress with amount larger than 100k.
So you guys need to keep the withdraw amout smaller than 100k each time.
Any problem mail to service@allcoin.com

Exp
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
February 08, 2014, 09:37:47 PM
 #35

Add Grumpycoin (GRUM)
https://bitcointalk.org/index.php?topic=403936.0
allcoin.com (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 08, 2014, 10:22:36 PM
 #36

[NUT NutCoin] Guys it seems that nutcoind  has some bugs when calling api sendtoaddress with amount larger than 100k.
So you guys need to keep the withdraw amout smaller than 100k each time.
Any problem mail to service@allcoin.com
I find something in source code   

https://github.com/dmx374/nutcoin/blob/93b6a4095aa724363afa1f3ffe4c2eaeef851a86/src/bitcoinrpc.cpp

int64 AmountFromValue(const Value& value)
{
    double dAmount = value.get_real();
    if (dAmount <= 0.0 || dAmount > 50000.0) // max 50 000 NUT transaction
        throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
    int64 nAmount = roundint64(dAmount * COIN);
    if (!MoneyRange(nAmount))
        throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
    return nAmount;
}

allcoin.com (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 08, 2014, 10:28:41 PM
 #37

[NUT NutCoin] Guys it seems that nutcoind  has some bugs when calling api sendtoaddress with amount larger than 100k.
So you guys need to keep the withdraw amout smaller than 100k each time.
Any problem mail to service@allcoin.com
I find something in source code   

https://github.com/dmx374/nutcoin/blob/93b6a4095aa724363afa1f3ffe4c2eaeef851a86/src/bitcoinrpc.cpp

int64 AmountFromValue(const Value& value)
{
    double dAmount = value.get_real();
    if (dAmount <= 0.0 || dAmount > 50000.0) // max 50 000 NUT transaction
        throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
    int64 nAmount = roundint64(dAmount * COIN);
    if (!MoneyRange(nAmount))
        throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
    return nAmount;
}
WTF , I changed this code
    if (dAmount <= 0.0 || dAmount >= 100000000.0) //
Problem resolved.

Mr-alex
Newbie
*
Offline Offline

Activity: 41
Merit: 0


View Profile
February 10, 2014, 02:16:31 PM
 #38

hello
please add kakacoin
this is kakacoin ANN
https://bitcointalk.org/index.php?topic=437085.0

thankyou
feomat
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
February 10, 2014, 11:41:07 PM
 #39

plz add FCKBANKScoin!

allcoin.com (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
February 15, 2014, 02:19:25 AM
Last edit: February 15, 2014, 02:46:50 AM by allcoin.com
 #40

We have added FlappyCoin  FLAP/LTC FLAP/BTC markets!

Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 »  All
  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!