Search content
Sort by

Showing 20 of 80 results by sigesang
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][PHS][50% PoS] PhilosopherStone | NoPremine |10 month Dist | 1.6.4.1
by
sigesang
on 31/10/2014, 18:25:02 UTC
Code:
In file included from src/bignum.h:12:0,
                 from src/main.h:8,
                 from src/kernel.h:7,
                 from src/txdb-leveldb.cpp:17:
src/main.h: In member function 'std::string CTransaction::ToString() const':
src/util.h:181:69: warning: too many arguments for format [-Wformat-extra-args]
 #define strprintf(format, ...) real_strprintf(format, 0, __VA_ARGS__)
                                                                     ^
src/main.h:659:16: note: in expansion of macro 'strprintf'
         str += strprintf("(hash=%s, nTime=%d, ver=%d, vin.size=%"PRIszu", vout.size=%"PRIszu", nLockTime=%d)\n",
                ^

src/main.h
Code:
            nVersion,
             vin.size(),
             vout.size(),
-            nLockTime,
- strTxComment.substr(0,30).c_str()
- );
+            nLockTime);
 
         for (unsigned int i = 0; i < vin.size(); i++)
             str += "    " + vin[i].ToString() + "\n";

I don't like warnings, please fix this obvious typo
Post
Topic
Board Announcements (Altcoins)
Re: HoboNickels - HBN - High Fast Stake - Version 1.5 Final Beta
by
sigesang
on 22/10/2014, 18:06:19 UTC
Alright I think all the int64 issues are taken care of now.

This worked well for me on Ubuntu 12.04, gcc 4.6.3, QT 4.8.1

Code:
git clone https://github.com/Tranz5/HoboNickels
cd HoboNickels
qmake HoboNickels-qt.pro
make -f Makefile
sudo ./HoboNickels-qt

Debian 6 & qt 4.6.3

This is a bit older version of QT. I will see if I can help you along. My lowest version is 4.8.1



Works fine for me aswell now; Qt 4.8.5, gcc 4.8.3, boost 1.55 (gentoo linux).
Nice work.

(btw, "sudo ./HoboNickels-qt", I see little reason to run it as superuser (sudo))
Post
Topic
Board Announcements (Altcoins)
Re: HoboNickels - HBN - High Fast Stake - Version 1.5 Final Beta
by
sigesang
on 18/10/2014, 01:13:27 UTC


did fast hack fix, diff is here http://pastebin.com/Jh0GA75L


Thanks, what version of QT were you using? I'll play with this over the weekend and see if I can get a cleaner version out there.

did use Qt 4.8.5
Post
Topic
Board Announcements (Altcoins)
Re: HoboNickels - HBN - High Fast Stake - Version 1.5 Final Beta
by
sigesang
on 17/10/2014, 17:19:37 UTC
ok
exhaust:
....

/usr/include/qt4/QtCore/qvariant.h:425: note: candidates are: QVariant::QVariant(void*)
/usr/include/qt4/QtCore/qvariant.h:222: note:                 QVariant::QVariant(Qt::GlobalColor)
/usr/include/qt4/QtCore/qvariant.h:192: note:                 QVariant::QVariant(const char*)
/usr/include/qt4/QtCore/qvariant.h:190: note:                 QVariant::QVariant(float)
/usr/include/qt4/QtCore/qvariant.h:189: note:                 QVariant::QVariant(double)
/usr/include/qt4/QtCore/qvariant.h:188: note:                 QVariant::QVariant(bool)
/usr/include/qt4/QtCore/qvariant.h:187: note:                 QVariant::QVariant(qulonglong)
/
...


that's the start, futher on I get these:

Code:
src/qt/walletmodel.cpp: In member function 'WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList&, const CCoinControl*)':
src/qt/walletmodel.cpp:232:108: error: no matching function for call to 'CWallet::CreateTransaction(std::vector >&, CWalletTx&, CReserveKey&, qint64&, bool, const CCoinControl*&)'
         bool fCreated = wallet->CreateTransaction(vecSend, wtx, keyChange, nFeeRequired, false, coinControl);
                                                                                                            ^
src/qt/walletmodel.cpp:232:108: note: candidates are:
In file included from src/init.h:8:0,
                 from src/qt/walletmodel.cpp:6:
src/wallet.h:248:10: note: bool CWallet::CreateTransaction(const std::vector >&, CWalletTx&, CReserveKey&, int64_t&, bool, const CCoinControl*)
     bool CreateTransaction(const std::vector >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, bool fAllowS4C=false, const CCoinControl *coinControl=NULL);
          ^
src/wallet.h:248:10: note:   no known conversion for argument 1 from 'std::vector >' to 'const std::vector >&'
src/wallet.h:249:10: note: bool CWallet::CreateTransaction(CScript, int64_t, CWalletTx&, CReserveKey&, int64_t&, bool, const CCoinControl*)
     bool CreateTransaction(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, bool fAllowS4C=false, const CCoinControl *coinControl=NULL);
          ^
src/wallet.h:249:10: note:   no known conversion for argument 1 from 'std::vector >' to 'CScript'
src/qt/walletmodel.cpp: In member function 'void WalletModel::getStakeWeight(quint64&, quint64&, quint64&)':
src/qt/walletmodel.cpp:456:68: error: no matching function for call to 'CWallet::GetStakeWeight(CWallet&, quint64&, quint64&, quint64&)'
     wallet->GetStakeWeight(*wallet, nMinWeight, nMaxWeight, nWeight);
                                                                    ^
src/qt/walletmodel.cpp:456:68: note: candidate is:
In file included from src/init.h:8:0,
                 from src/qt/walletmodel.cpp:6:
src/wallet.h:251:10: note: bool CWallet::GetStakeWeight(const CKeyStore&, uint64_t&, uint64_t&, uint64_t&)
     bool GetStakeWeight(const CKeyStore& keystore, uint64_t& nMinWeight, uint64_t& nMaxWeight, uint64_t& nWeight);
          ^
src/wallet.h:251:10: note:   no known conversion for argument 2 from 'quint64 {aka long long unsigned int}' to 'uint64_t& {aka long unsigned int&}'
src/qt/walletmodel.cpp: In member function 'quint64 WalletModel::getTotStakeWeight()':
src/qt/walletmodel.cpp:472:72: error: no matching function for call to 'CWallet::GetStakeWeight(CWallet&, quint64&, quint64&, quint64&)'
         pwallet->GetStakeWeight(*pwallet, nMinWeight,nMaxWeight,nWeight);
                                                                        ^
src/qt/walletmodel.cpp:472:72: note: candidate is:
In file included from src/init.h:8:0,
                 from src/qt/walletmodel.cpp:6:
src/wallet.h:251:10: note: bool CWallet::GetStakeWeight(const CKeyStore&, uint64_t&, uint64_t&, uint64_t&)
     bool GetStakeWeight(const CKeyStore& keystore, uint64_t& nMinWeight, uint64_t& nMaxWeight, uint64_t& nWeight);
          ^
src/wallet.h:251:10: note:   no known conversion for argument 2 from 'quint64 {aka long long unsigned int}' to 'uint64_t& {aka long unsigned int&}'
src/qt/walletmodel.cpp: In member function 'void WalletModel::getStakeWeightFromValue(const qint64&, const qint64&, quint64&)':
src/qt/walletmodel.cpp:481:59: error: no matching function for call to 'CWallet::GetStakeWeightFromValue(const qint64&, const qint64&, quint64&)'
     wallet->GetStakeWeightFromValue(nTime, nValue, nWeight);
                                                           ^
src/qt/walletmodel.cpp:481:59: note: candidate is:
In file included from src/init.h:8:0,
                 from src/qt/walletmodel.cpp:6:
src/wallet.h:252:10: note: bool CWallet::GetStakeWeightFromValue(const int64_t&, const int64_t&, uint64_t&)
     bool GetStakeWeightFromValue(const int64_t& nTime, const int64_t& nValue, uint64_t& nWeight);
          ^
src/wallet.h:252:10: note:   no known conversion for argument 3 from 'quint64 {aka long long unsigned int}' to 'uint64_t& {aka long unsigned int&}'
src/qt/walletmodel.cpp: In member function 'void WalletModel::checkWallet(int&, qint64&, int&)':
src/qt/walletmodel.cpp:486:82: error: no matching function for call to 'CWallet::FixSpentCoins(int&, qint64&, int&, bool)'
     wallet->FixSpentCoins(nMismatchSpent, nBalanceInQuestion, nOrphansFound, true);
                                                                                  ^
src/qt/walletmodel.cpp:486:82: note: candidate is:
In file included from src/init.h:8:0,
                 from src/qt/walletmodel.cpp:6:
src/wallet.h:376:10: note: void CWallet::FixSpentCoins(int&, int64_t&, int&, bool)
     void FixSpentCoins(int& nMismatchSpent, int64_t& nBalanceInQuestion, int& nOrphansFound, bool fCheckOnly = false);
          ^
src/wallet.h:376:10: note:   no known conversion for argument 2 from 'qint64 {aka long long int}' to 'int64_t& {aka long int&}'
src/qt/walletmodel.cpp: In member function 'void WalletModel::repairWallet(int&, qint64&, int&)':
src/qt/walletmodel.cpp:491:76: error: no matching function for call to 'CWallet::FixSpentCoins(int&, qint64&, int&)'
     wallet->FixSpentCoins(nMismatchSpent, nBalanceInQuestion, nOrphansFound);
                                                                            ^
src/qt/walletmodel.cpp:491:76: note: candidate is:
In file included from src/init.h:8:0,
                 from src/qt/walletmodel.cpp:6:
src/wallet.h:376:10: note: void CWallet::FixSpentCoins(int&, int64_t&, int&, bool)
     void FixSpentCoins(int& nMismatchSpent, int64_t& nBalanceInQuestion, int& nOrphansFound, bool fCheckOnly = false);
          ^
src/wallet.h:376:10: note:   no known conversion for argument 2 from 'qint64 {aka long long int}' to 'int64_t& {aka long int&}'

Linux amd64 platform
1.4.99 from github.com/Tranz5/HoboNickels

did fast hack fix, diff is here http://pastebin.com/Jh0GA75L
Post
Topic
Board Announcements (Altcoins)
Re: HoboNickels - HBN - 2% stake power! - Version 1.3
by
sigesang
on 25/02/2014, 19:00:45 UTC
seems something is missing currently on github:
Code:
g++ -c -pipe -fstack-protector-all --param ssp-buffer-size=1 -msse2 -O2 -D_REENTRANT -fdiagnostics-show-option -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN -D__NO_SYSTEM_INCLUDES -DUSE_QRCODE -DUSE_UPNP=1 -DSTATICLIB -DUSE_DBUS -DUSE_IPV6=1 -DUSE_LEVELDB -DHAVE_BUILD_INFO -DLINUX -DQT_NO_DEBUG -DQT_DBUS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtDBus -I/usr/include/qt4 -Isrc -Isrc/json -Isrc/qt -Isrc/leveldb/include -Isrc/leveldb/helpers -I/usr/include/db4.8 -Ibuild -Ibuild -o build/transactionrecord.o src/qt/transactionrecord.cpp
src/qt/transactionrecord.cpp: In member function 'void TransactionRecord::updateStatus(const CWalletTx&)':
src/qt/transactionrecord.cpp:173:28: error: 'const class CWalletTx' has no member named 'IsConfirmed'

edit:
was on https://github.com/Tranz5/HoboNickels, so maybe not so important.. but someone might want to know
Post
Topic
Board Altcoin Discussion
Re: [GRA] Giveaway thread for Grain - GRA | Each person gets 10000 GRAs
by
sigesang
on 09/12/2013, 19:17:23 UTC
9JymkrY1wtUUzQMHxyXyuotSWVjPkQhhTK
ty
Post
Topic
Board Altcoin Discussion
Re: [PPC] Free Peercoin Giveaway - Just post your wallet
by
sigesang
on 29/11/2013, 19:08:43 UTC
PNrgZD1ZqNiMC7q3SoQZMGvmme36Pnxgic
ty
Post
Topic
Board Announcements (Altcoins)
Re: HoboNickels - HBN - 1.2.1.3 Upgrade NOW, or be left behind. Do not run stake!
by
sigesang
on 03/11/2013, 16:52:10 UTC
How many forks are there of this now? there even is a correct one?

http://hobo.gets-it.net/ is correct?
http://www.coinchoose.com/ ?

I got block in wallet (v1.2.1.3-gb3d0643-hobo) 288858 guess it's wrong, but really don't have a clue.. the joy of broken cryptocoins..

To: F2ioe5mkjNQkmBdJrj7GtzhNkiNiojCk1B (own address, label: coinex.pw)
Credit: 1304.208984 HOBO
Net amount: +1304.208984 HOBO
Transaction ID: 7cdd707eb88c995b83ac0749b06a4eb7747c8bcf2abc8e1c1b30794cdf152637

guess that's lost coins?

yes you want to be running v1.2.1.3-gb3d0643-hobo.

I think coinex is having issues as well separate of the HBNs.  

As long as those coins were not mined recently and rolled back, they should make their way to coinex, as your wallet should re-broadcast when it sees they were orphaned.  Do you have confirmations?

did reset blockchain again, but didnt have any confirmations (but think there where yesterday, but might have been runing too old wallet)..
so I guess whenever coinex fix there shit i get it back in the balance

Well thats not the case, these are still lost:

Status: 0/unconfirmed
Date: 31 Oct 2013 23:29
From: unknown
To: F2ioe5mkjNQkmBdJrj7GtzhNkiNiojCk1B (own address, label: coinex.pw)
Credit: 1304.208984 HOBO
Net amount: +1304.208984 HOBO
Transaction ID: 7cdd707eb88c995b83ac0749b06a4eb7747c8bcf2abc8e1c1b30794cdf152637

These are not im my wallet nor on coinex..

Please download the newest wallet 1.2.1.4 and start the client with -salvagewallet.

Also where and when do you get those coins you sent to coinex? Were they mined, what was the age?
Mined on coinex the days before 31 oct (or so, there is no useful log/info for users on coinex, and now delisted as minable.. very surprisingly.. ), so sent from coinex not to
Post
Topic
Board Announcements (Altcoins)
Re: HoboNickels - HBN - 1.2.1.3 Upgrade NOW, or be left behind. Do not run stake!
by
sigesang
on 03/11/2013, 16:42:04 UTC
How many forks are there of this now? there even is a correct one?

http://hobo.gets-it.net/ is correct?
http://www.coinchoose.com/ ?

I got block in wallet (v1.2.1.3-gb3d0643-hobo) 288858 guess it's wrong, but really don't have a clue.. the joy of broken cryptocoins..

To: F2ioe5mkjNQkmBdJrj7GtzhNkiNiojCk1B (own address, label: coinex.pw)
Credit: 1304.208984 HOBO
Net amount: +1304.208984 HOBO
Transaction ID: 7cdd707eb88c995b83ac0749b06a4eb7747c8bcf2abc8e1c1b30794cdf152637

guess that's lost coins?

yes you want to be running v1.2.1.3-gb3d0643-hobo.

I think coinex is having issues as well separate of the HBNs.  

As long as those coins were not mined recently and rolled back, they should make their way to coinex, as your wallet should re-broadcast when it sees they were orphaned.  Do you have confirmations?

did reset blockchain again, but didnt have any confirmations (but think there where yesterday, but might have been runing too old wallet)..
so I guess whenever coinex fix there shit i get it back in the balance

Well thats not the case, these are still lost:

Status: 0/unconfirmed
Date: 31 Oct 2013 23:29
From: unknown
To: F2ioe5mkjNQkmBdJrj7GtzhNkiNiojCk1B (own address, label: coinex.pw)
Credit: 1304.208984 HOBO
Net amount: +1304.208984 HOBO
Transaction ID: 7cdd707eb88c995b83ac0749b06a4eb7747c8bcf2abc8e1c1b30794cdf152637

These are not im my wallet nor on coinex..
Post
Topic
Board Announcements (Altcoins)
Re: HoboNickels - HBN - 1.2.1.3 Upgrade NOW, or be left behind. Do not run stake!
by
sigesang
on 01/11/2013, 22:10:52 UTC
How many forks are there of this now? there even is a correct one?

http://hobo.gets-it.net/ is correct?
http://www.coinchoose.com/ ?

I got block in wallet (v1.2.1.3-gb3d0643-hobo) 288858 guess it's wrong, but really don't have a clue.. the joy of broken cryptocoins..

To: F2ioe5mkjNQkmBdJrj7GtzhNkiNiojCk1B (own address, label: coinex.pw)
Credit: 1304.208984 HOBO
Net amount: +1304.208984 HOBO
Transaction ID: 7cdd707eb88c995b83ac0749b06a4eb7747c8bcf2abc8e1c1b30794cdf152637

guess that's lost coins?

yes you want to be running v1.2.1.3-gb3d0643-hobo.

I think coinex is having issues as well separate of the HBNs.  

As long as those coins were not mined recently and rolled back, they should make their way to coinex, as your wallet should re-broadcast when it sees they were orphaned.  Do you have confirmations?

did reset blockchain again, but didnt have any confirmations (but think there where yesterday, but might have been runing too old wallet)..
so I guess whenever coinex fix there shit i get it back in the balance
Post
Topic
Board Announcements (Altcoins)
Re: HoboNickels - HBN - 1.2.1.3 Upgrade NOW, or be left behind. Do not run stake!
by
sigesang
on 01/11/2013, 21:38:41 UTC
How many forks are there of this now? there even is a correct one?

http://hobo.gets-it.net/ is correct?
http://www.coinchoose.com/ ?

I got block in wallet (v1.2.1.3-gb3d0643-hobo) 288858 guess it's wrong, but really don't have a clue.. the joy of broken cryptocoins..

To: F2ioe5mkjNQkmBdJrj7GtzhNkiNiojCk1B (own address, label: coinex.pw)
Credit: 1304.208984 HOBO
Net amount: +1304.208984 HOBO
Transaction ID: 7cdd707eb88c995b83ac0749b06a4eb7747c8bcf2abc8e1c1b30794cdf152637

guess that's lost coins?
Post
Topic
Board Altcoin Discussion
Re: [POLL] Klingon Empire Darsek (KED) "The Next Generation" poll....
by
sigesang
on 25/10/2013, 00:09:14 UTC
quark PoW + PoS
Post
Topic
Board Pools (Altcoins)
Re: [SUPPORT] Coinmine Pools Support Thread
by
sigesang
on 20/10/2013, 00:13:37 UTC
suddenly got negative balance in nvc pool, -0.02349075

doesn't make sense to me:
84897    sigesang    2013-10-17 11:16:35    Credit    Confirmed (520)       47000    -1.09375854
84885    sigesang    2013-10-16 19:35:20    Credit    Confirmed (520)       48569    0.41756697
84869    sigesang    2013-10-14 00:04:19    Credit    Confirmed (520)       48045    0.65270082
84866    sigesang    2013-10-11 19:16:25    TXFee    Confirmed (n/a)    4c1da8aTjBECFnpZoKV1HT17yeUBKsmv6D    n/a    0.05000000
84865    sigesang    2013-10-11 19:16:25    Debit_MP    Confirmed (n/a)    4c1da8aTjBECFnpZoKV1HT17yeUBKsmv6D    n/a    5.05166528
84835    sigesang    2013-10-09 03:55:21    Credit    Confirmed (520)       47000    1.09375854
84824    sigesang    2013-10-07 07:45:21    Credit    Confirmed (520)       46549    2.91414820

why -1.09 there, the amount i got before for block 47000?


"Hi - for one of the block (47000) you received payouts twice - I removed those transactions as pool is not earning enough to cover this..."
so I can't trust the transaction log it seems, 47000 is 2x payout but it doesn't show? unless one check sum of all (if I can trust that)?
Post
Topic
Board Altcoin Discussion
Re: Radeon R9 280X - new Mantle API - higher performance ?
by
sigesang
on 09/10/2013, 22:53:55 UTC
I might be wrong but Mandle seems a replacement for direct3d/opengl and not opencl(/cuda) as one usually need for GPGPU stuff like coin hashing. If so it would be like using 3d gfx api for mining. So I doubt Mantle will change much.
Post
Topic
Board Altcoin Discussion
Re: [ANN][NVC] Novacoin Pool - PROP, 0% fee, stratum - BOUNTY!
by
sigesang
on 07/10/2013, 23:59:52 UTC
I set up a bounty to attract miners a bit: next 5 block finders will receive additional 1 NVC each!

first 2 blocks found by:
- sigesang - txid: 2cc4c72693936e13f39bff3c78b896a152c72c6f1039e21c7423781c0d805615
- Burnash - txid: a9b9e3038a89348778affb0057f49fa8d6ba64813488c93de8923759098a5727

You can still get 3 NVCs - come and join!

feeleep

thanks
Post
Topic
Board Altcoin Discussion
Re: [ANN] New Client for Neocoin
by
sigesang
on 07/10/2013, 22:00:52 UTC
qtwallet build from github source crashes on finding PoS blocks

gdb:
Code:
#0  0x00007ffff34d7725 in vfprintf () from /lib64/libc.so.6
#1  0x00007ffff358c560 in __vsnprintf_chk () from /lib64/libc.so.6
#2  0x000000000047ee6f in vsnprintf (__ap=0x7fffd53cffd8, __fmt=0x689900 "(hash=%s, nTime=%d, ver=%d, vin.size=%zu, vout.size=%zu, nLockTime=%d, neodata=%s)\n", __n=50000,
    __s=0x7fffd53cfff0 "(hash=2b7e74b63a, nTime=1381180603, ver=1, vin.size=1, vout.size=1, nLockTime=0, neodata=") at /usr/include/bits/stdio2.h:79
#3  vstrprintf (format=0x689900 "(hash=%s, nTime=%d, ver=%d, vin.size=%zu, vout.size=%zu, nLockTime=%d, neodata=%s)\n", ap=ap@entry=0x7fffd53dc390) at src/util.cpp:309
#4  0x000000000047ef96 in real_strprintf (format=, dummy=) at src/util.cpp:331
#5  0x00000000004e4a7d in CTransaction::ToString (this=0x7fffe40634b0) at src/main.h:643
#6  0x00000000004e565d in print (this=) at src/main.h:660
#7  CBlock::print (this=this@entry=0x7fffe4062ef0) at src/main.h:1076
#8  0x00000000004bfe0d in CheckWork (pblock=0x7fffe4062ef0, wallet=..., reservekey=...) at src/main.cpp:4224
#9  0x00000000004c0abf in NeocoinMiner (pwallet=0x2fb2ae0, fProofOfStake=true) at src/main.cpp:4314
#10 0x000000000050a026 in ThreadStakeMinter (parg=0x2fb2ae0) at src/net.cpp:1313
#11 0x00007ffff6750724 in ?? () from /usr/lib64/libboost_thread.so.1.53.0
#12 0x00007ffff4052d96 in start_thread () from /lib64/libpthread.so.0
#13 0x00007ffff357946d in clone () from /lib64/libc.so.6

Trivial to fix:
Code:
             nVersion,
             vin.size(),
             vout.size(),
-            nLockTime),
-            neodata.substr(0,30).c_str();
+            nLockTime,
+            neodata.substr(0,30).c_str());
         for (unsigned int i = 0; i < vin.size(); i++)
             str += "    " + vin[i].ToString() + "\n";
         for (unsigned int i = 0; i < vout.size(); i++)
Post
Topic
Board Altcoin Discussion
Re: feathercoin pool(100M+)
by
sigesang
on 07/10/2013, 16:07:16 UTC
Hi

btb.ltcoin.net  report 2 payments for my wallet, but after two days did not arrive and appear as "Transaction not found."

http://btb.cryptocoinexplorer.com//tx/8adddbf0b754fe1078019c5e3e90d72b20c6335eecfe981333b5bcf74553cf33

http://btb.cryptocoinexplorer.com//tx/35cdc723a4bc887b5d05bf52a9c320ae0cff65a947e4801dc6947443c2957fe0

in the contact email no answer, please if the site does not work say it publicly to avoid losing more time!

Sorry but the service is really bad

btb.ltcoin have been on it's own fork for 3 weeks or so, mining there is a waste... digger seems not to respond/care any more
Post
Topic
Board Announcements (Altcoins)
Re: [BTB] The BitBar Information Thread
by
sigesang
on 28/09/2013, 21:14:46 UTC
btb.ltcoin is on its own chain and been so for a week or whatnot
at stat page every block got validity just 1 more than the last.. meaning all coins on this chain is from btb.ltcoin.. nothing else PoW nor PoS
Post
Topic
Board Altcoin Discussion
Re: Gimme some YAC
by
sigesang
on 23/09/2013, 23:44:12 UTC
Gimme some YAC
YLrLBsJEbqtCyjAgie622sDW7ihi6yYNub
IJhmqadCmpQxw5pSmtLT6baMCTBvy2MGzTyegCQELew4qzIjQ50D/1WpC5Od4auuKlWR

Didn't work. Try again.
Code:
The signature did not mach the message digest. Please check the signature and try again.
ops did miss end of signature, new try, should work


Gimme some YAC
YLrLBsJEbqtCyjAgie622sDW7ihi6yYNub
H23sNtVBgeaMscir6eI25np7Z+DkR4/PDK9OSJq7QlMiDeuAPdEspwjrNmyy5nAZ4WRV8/2XCZqya682LDc9hgY=
Post
Topic
Board Altcoin Discussion
Re: Gimme some YAC
by
sigesang
on 23/09/2013, 23:10:07 UTC
Gimme some YAC
YLrLBsJEbqtCyjAgie622sDW7ihi6yYNub
IJhmqadCmpQxw5pSmtLT6baMCTBvy2MGzTyegCQELew4qzIjQ50D/1WpC5Od4auuKlWR