Bitcoin Forum
May 24, 2024, 05:46:36 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: May 30, 2018, 06:25:59 PM
Hi,

We've re-enabled XMG on www.zpool.ca

Cheers

@crackfoo Thanks for setting up the pool.

PoS is not working here, several days passed, weight is decreasing, no stake.

how much are you staking?
How many conformations do you have?
I'm using 250 and it's staking every 50 -55 hours.

I'm staking 346 in pieces, 25...50, most of them ~35, several days ago weight was ~1000, now it is much less, confirmations in many pieces passed 10000 and... nothing. Strange, it was better earlier.

This might be case:
https://www.m-core.org/resources/faq.html#faq-staking-not-enough-weight

There was enough weight, like 1000, now it is ~600, and as I wrote ~5 pieces (~35xmg each) succesfully went through 10000 confirmations without staking. Several weeks ago it was totally different, something has changed in the wrong direction.

I got 590+790 with ~5900 confirms. no stake.
"Expected PoS (hours)" : 2,
"stakeinterest" : 0.02230275,
wallet is crypted but open for staking, icon tooltip says "Not staking".

edit: did miss posii=1 flag in config
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] on: May 27, 2018, 05:05:16 PM
Join our anonymous and 0%fee pool xmr2018.com
It's xmr because of an error we are waiting for you Wink

Payouts isn't working, there is no tx on payout for my address.

edit:
Got payout now.
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][PHS][50% PoS] PhilosopherStone | NoPremine |10 month Dist | 1.6.4.1 on: October 31, 2014, 06:25:02 PM
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
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5 Final Beta on: October 22, 2014, 06:06:19 PM
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))
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5 Final Beta on: October 18, 2014, 01:13:27 AM


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
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5 Final Beta on: October 17, 2014, 05:19:37 PM
ok
exhaust:
....

/usr/include/qt4/QtCore/qvariant.h:425: note: candidates are: QVariant::QVariant(void*) <near match>
/usr/include/qt4/QtCore/qvariant.h:222: note:                 QVariant::QVariant(Qt::GlobalColor) <near match>
/usr/include/qt4/QtCore/qvariant.h:192: note:                 QVariant::QVariant(const char*) <near match>
/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<SendCoinsRecipient>&, const CCoinControl*)':
src/qt/walletmodel.cpp:232:108: error: no matching function for call to 'CWallet::CreateTransaction(std::vector<std::pair<CScript, long long int> >&, 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<std::pair<CScript, long int> >&, CWalletTx&, CReserveKey&, int64_t&, bool, const CCoinControl*)
     bool CreateTransaction(const std::vector<std::pair<CScript, int64_t> >& 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<std::pair<CScript, long long int> >' to 'const std::vector<std::pair<CScript, long int> >&'
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<std::pair<CScript, long long int> >' 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
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - 2% stake power! - Version 1.3 on: February 25, 2014, 07:00:45 PM
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
8  Alternate cryptocurrencies / Altcoin Discussion / Re: [GRA] Giveaway thread for Grain - GRA | Each person gets 10000 GRAs on: December 09, 2013, 07:17:23 PM
9JymkrY1wtUUzQMHxyXyuotSWVjPkQhhTK
ty
9  Alternate cryptocurrencies / Altcoin Discussion / Re: [PPC] Free Peercoin Giveaway - Just post your wallet on: November 29, 2013, 07:08:43 PM
PNrgZD1ZqNiMC7q3SoQZMGvmme36Pnxgic
ty
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - 1.2.1.3 Upgrade NOW, or be left behind. Do not run stake! on: November 03, 2013, 04:52:10 PM
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
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - 1.2.1.3 Upgrade NOW, or be left behind. Do not run stake! on: November 03, 2013, 04:42:04 PM
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..
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - 1.2.1.3 Upgrade NOW, or be left behind. Do not run stake! on: November 01, 2013, 10:10:52 PM
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
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - 1.2.1.3 Upgrade NOW, or be left behind. Do not run stake! on: November 01, 2013, 09:38:41 PM
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?
14  Alternate cryptocurrencies / Altcoin Discussion / Re: [POLL] Klingon Empire Darsek (KED) "The Next Generation" poll.... on: October 25, 2013, 12:09:14 AM
quark PoW + PoS
15  Alternate cryptocurrencies / Pools (Altcoins) / Re: [SUPPORT] Coinmine Pools Support Thread on: October 20, 2013, 12:13:37 AM
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)?
16  Alternate cryptocurrencies / Altcoin Discussion / Re: Radeon R9 280X - new Mantle API - higher performance ? on: October 09, 2013, 10:53:55 PM
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.
17  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN][NVC] Novacoin Pool - PROP, 0% fee, stratum - BOUNTY! on: October 07, 2013, 11:59:52 PM
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
18  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] New Client for Neocoin on: October 07, 2013, 10:00:52 PM
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=<optimized out>, dummy=<optimized out>) at src/util.cpp:331
#5  0x00000000004e4a7d in CTransaction::ToString (this=0x7fffe40634b0) at src/main.h:643
#6  0x00000000004e565d in print (this=<optimized out>) 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++)
19  Alternate cryptocurrencies / Altcoin Discussion / Re: feathercoin pool(100M+) on: October 07, 2013, 04:07:16 PM
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
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BTB] The BitBar Information Thread on: September 28, 2013, 09:14:46 PM
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
Pages: [1] 2 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!