Bitcoin Forum
May 04, 2024, 03:33:36 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 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 ... 97 »
  Print  
Author Topic: [ANN]Doubloons[BOAT]⚓⚓PoW/PoS⚓⚓HMQ1725⚓⚓NEW SITE!!⚓CPU Pillaging!!⚓YAARR!!⚓  (Read 117591 times)
happytorn
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
February 07, 2017, 07:57:34 AM
 #241

Voted twice :)today and yesterday last #37
BSR5dm8YZ6uDCej44sViDjsSxsPGKempQd
1714793616
Hero Member
*
Offline Offline

Posts: 1714793616

View Profile Personal Message (Offline)

Ignore
1714793616
Reply with quote  #2

1714793616
Report to moderator
1714793616
Hero Member
*
Offline Offline

Posts: 1714793616

View Profile Personal Message (Offline)

Ignore
1714793616
Reply with quote  #2

1714793616
Report to moderator
The Bitcoin network protocol was designed to be extremely flexible. It can be used to create timed transactions, escrow transactions, multi-signature transactions, etc. The current features of the client only hint at what will be possible in the future.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714793616
Hero Member
*
Offline Offline

Posts: 1714793616

View Profile Personal Message (Offline)

Ignore
1714793616
Reply with quote  #2

1714793616
Report to moderator
antaja
Full Member
***
Offline Offline

Activity: 232
Merit: 100



View Profile
February 07, 2017, 08:00:25 AM
 #242

Frankly, 10k for a single node is a bit much. Everyone can open their wallet and send you their IP...  Grin
lol true, run my wallet and voted
BPCHPcnWXUe2XTdxPRNjS5P1Ky6QQBoKWT
 Cheesy
zander023
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
February 07, 2017, 08:34:16 AM
 #243

added my two wotes,yesterday and today #39
OBAViJEST (OP)
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500



View Profile WWW
February 07, 2017, 08:47:31 AM
 #244

everytime you restart windows wallet, you need to sync blocks again from beginning  Sad

I noticed this as well.  Something isn't right.  Best to run in a virtualbox for now.  I'm going to take a closer look at the code in the next few hours.

Been trying to figure out how to fix this as well.

The reason it keeps re-syncing is probably because:

Code:

void init_blockindex(leveldb::Options& options, bool fRemoveOld = [b]true[/b]) {
    // First time init.
    filesystem::path directory = GetDataDir() / "txleveldb";

    if (fRemoveOld)
        filesystem::remove_all(directory); // remove directory


if true is set to false, the wallet brings up an error stating "cannot find blkindex.dat"

Setting the value to true was the only option until the real issue can be found...  Huh  

Still trying to figure this out, apologies for any inconvenience!

Just from the snippet you posted there, it looks like at the point it would be trying to pull the block index, it has been directed instead to clear out everything in the /txleveldb directory. When you set it to false, you're essentially telling it the block index simply doesn't exist, because it's coded to launch into clearing /txleveldb.

In other words, you've specified that the location of blockindex is to check and see if you need to remove the location of the block index.
If true, it has been found, and it will proceed to wipe out the directory as instructed and start the vicious cycle over.
If false, it no longer knows where to look for blockindex and gives up.

I understand this may not be the simplest explanation, but it's late and it made sense to me at the time.

I didn't see this earlier, but that's what it looks like to me as well. The boolean name removeold pretty much says everything. If you set that to false it shouldn't remove it

The reason it's set to false, is because if true, the wallet fails to load & returns a 'error finding blkindex.dat' - even though there IS a block index.

Setting that value to true was the only way around it, and the solution has yet to be found.  Quite a mystery (clearing the roaming folder usually helps when other wallets run into this issue, but doesn't work in this case)
Chance567
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
February 07, 2017, 09:14:43 AM
 #245


The reason it's set to false, is because if true, the wallet fails to load & returns a 'error finding blkindex.dat' - even though there IS a block index.

Setting that value to true was the only way around it, and the solution has yet to be found.  Quite a mystery (clearing the roaming folder usually helps when other wallets run into this issue, but doesn't work in this case)

I get that. Let me see if I'm reading the code right.

void init_blockindex(leveldb::Options& options, bool fRemoveOld = true) {
    // First time init.
    filesystem::path directory = GetDataDir() / "txleveldb";

    if (fRemoveOld)
        filesystem::remove_all(directory); // remove directory
     
   
    filesystem::create_directory(directory);
    printf("Opening LevelDB in %s\n", directory.string().c_str());
    leveldb::Status status = leveldb::DB::Open(options, directory.string(), &txdb);
    if (!status.ok()) {
        throw runtime_error(strprintf("init_blockindex(): error opening database environment %s", status.ToString().c_str()));
    }
}

Pseudocode translation:

Find the block index.
You're going to look for the txleveldb directory to find it.
If I've specified that you need to get rid of the old directory, go ahead and do that.
Make a new directory.
If you run into trouble, panic and tell me about it.


I'm sure you've gone over this a thousand times, and I have no doubt you're more skilled at writing code than I am, but a fresh set of eyes never hurts. If I am reading the code wrong, please feel free to enlighten me. If nothing else, we'll bump the thread back up and keep it in the public eye.
CryptXC
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile WWW
February 07, 2017, 09:29:44 AM
 #246

Doubloons has been added to CryptXC
Take a splash and come trade with us!

Market - https://cryptxc.com/markets/boatbtc
Deposit - https://cryptxc.com/funds#/deposits/boat

CryptXC Announcement | Twitter | Support | API Docs
Zaducis
Sr. Member
****
Offline Offline

Activity: 441
Merit: 250


View Profile
February 07, 2017, 09:44:19 AM
 #247

Doubloons has been added to CryptXC
Take a splash and come trade with us!

Market - https://cryptxc.com/markets/boatbtc
Deposit - https://cryptxc.com/funds#/deposits/boat

CryptXC Announcement | Twitter | Support | API Docs

The first time I heard about this exchange. Look no trades at all. Someone traded here?

Chance567
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
February 07, 2017, 09:46:32 AM
 #248

Doubloons has been added to CryptXC
Take a splash and come trade with us!

Market - https://cryptxc.com/markets/boatbtc
Deposit - https://cryptxc.com/funds#/deposits/boat

CryptXC Announcement | Twitter | Support | API Docs

Hold all deposits. Sent a pittance of BOAT just to see what would happen.
Chance567
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
February 07, 2017, 09:54:47 AM
 #249

Doubloons has been added to CryptXC
Take a splash and come trade with us!

Market - https://cryptxc.com/markets/boatbtc
Deposit - https://cryptxc.com/funds#/deposits/boat

CryptXC Announcement | Twitter | Support | API Docs

Hold all deposits. Sent a pittance of BOAT just to see what would happen.

Follow-up:
Deposit went smoothly, as expected.
Withdrawal requires administrator approval.
2FA works, e-mails are instantaneous when account-related actions take place.
Fees for withdrawals.
Fees for transactions.
Fun stuff.
bumbacoin
Legendary
*
Offline Offline

Activity: 1638
Merit: 1036



View Profile
February 07, 2017, 10:08:27 AM
 #250

i've just sent a fix for wallet re-sync shenanigans to obavijest.
we'll see Wink


this malarkey
void init_blockindex(leveldb::Options& options, bool fRemoveOld = true) {

was necessary cos the client didnt like the chain, so once you fix that then you can stop making it reload on start up.

💦☔️🐳💚💖💛
go to
cryptobetfair.com
ask for a voucher

████████████████
██████████████
█████████████
██████████████
██████████████
███████████
█████████
███████████
████████████
████████████
███████████
█████████████
██████████████
███████████████
████████████████
████████████████
🐠👻🍗🌳🐵
CryptXC
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile WWW
February 07, 2017, 10:09:51 AM
 #251

Doubloons has been added to CryptXC
Take a splash and come trade with us!

Market - https://cryptxc.com/markets/boatbtc
Deposit - https://cryptxc.com/funds#/deposits/boat

CryptXC Announcement | Twitter | Support | API Docs

Hold all deposits. Sent a pittance of BOAT just to see what would happen.

Follow-up:
Deposit went smoothly, as expected.
Withdrawal requires administrator approval.
2FA works, e-mails are instantaneous when account-related actions take place.
Fees for withdrawals.
Fees for transactions.
Fun stuff.

Hi Chance567,

Withdrawals should be instant, but sorry we configured the fees incorrectly (as BOAT requires 0.1BOAT per transaction) hence it is pending.

Can you try cancelling you withdrawal and trying again? You can do this on your funds/withdrawal page next to status.

Let us know if you have any issues and we can manually process for you.
BillTech
Sr. Member
****
Offline Offline

Activity: 296
Merit: 250


View Profile
February 07, 2017, 10:10:43 AM
 #252

i've just sent a fix for wallet re-sync shenanigans to obavijest.
we'll see Wink


this malarkey
void init_blockindex(leveldb::Options& options, bool fRemoveOld = true) {

was necessary cos the client didnt like the chain, so once you fix that then you can stop making it reload on start up.

rockin thx
Chance567
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
February 07, 2017, 10:19:58 AM
 #253


Hi Chance567,

Withdrawals should be instant, but sorry we configured the fees incorrectly (as BOAT requires 0.1BOAT per transaction) hence it is pending.

Can you try cancelling you withdrawal and trying again? You can do this on your funds/withdrawal page next to status.

Let us know if you have any issues and we can manually process for you.

http://prntscr.com/e5kd62

Where again? >.>
Chance567
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
February 07, 2017, 10:26:17 AM
 #254


Hi Chance567,

Withdrawals should be instant, but sorry we configured the fees incorrectly (as BOAT requires 0.1BOAT per transaction) hence it is pending.

Can you try cancelling you withdrawal and trying again? You can do this on your funds/withdrawal page next to status.

Let us know if you have any issues and we can manually process for you.

http://prntscr.com/e5kd62

Where again? >.>

Normally I wouldn't have to ask that question... but...
http://prntscr.com/e5kfmy
mickey_miner
Sr. Member
****
Offline Offline

Activity: 910
Merit: 250


Proof-of-Stake Blockchain Network


View Profile
February 07, 2017, 10:33:58 AM
 #255

i've just sent a fix for wallet re-sync shenanigans to obavijest.
we'll see Wink


this malarkey
void init_blockindex(leveldb::Options& options, bool fRemoveOld = true) {

was necessary cos the client didnt like the chain, so once you fix that then you can stop making it reload on start up.

There are some issue's with the code and compiling it.  It looks like others have gotten close to the solution. I can't resolve and release a Windows binary because I don't have a current Windows build system setup.  I'm just got a new ASUS ROG Laptop and am too busy setting it up for other things.






             ,gaaaaaaaagaaaaaaaaaaaaagaaaaaaaag,
           ,aP8b    _,dYba,       ,adPb,_    d8Ya,
         ,aP"  Yb_,dP"   "Yba, ,adP"   "Yb,_dP  "Ya,
       ,aP"    _88"         )888(         "88_    "Ya,
     ,aP"   _,dP"Yb      ,adP"8"Yba,      dP"Yb,_   "Ya,
   ,aPYb _,dP8    Yb  ,adP"   8   "Yba,  dP    8Yb,_ dPYa,
 ,aP"  YdP" dP     YbdP"      8      "YbdP     Yb "YbP  "Ya,
I8aaaaaa8aaa8baaaaaa88aaaaaaaa8aaaaaaaa88aaaaaad8aaa8aaaaaa8I
`Yb,   d8a, Ya      d8b,      8      ,d8b      aP ,a8b   ,dP'
  "Yb,dP "Ya "8,   dI "Yb,    8    ,dP" Ib   ,8" aP" Yb,dP"
    "Y8,   "YaI8, ,8'   "Yb,  8  ,dP"   `8, ,8IaP"   ,8P"
      "Yb,   `"Y8ad'      "Yb,8,dP"      `ba8P"'   ,dP"
        "Yb,    `"8,        "Y8P"        ,8"'    ,dP"
          "Yb,    `8,         8         ,8'    ,dP"
            "Yb,   `Ya        8        aP'   ,dP"
              "Yb,   "8,      8      ,8"   ,dP"
                "Yb,  `8,     8     ,8'  ,dP" 
                  "Yb, `Ya    8    aP' ,dP"   
                    "Yb, "8,  8  ,8" ,dP"
                      "Yb,`8, 8 ,8',dP"
                        "Yb,Ya8aP,dP"
                          "Y88888P"
                            "Y8P"
                              "       

Free TON





PEER-TO-PEER MULTY-BLOCKCHAIN SYSTEM
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬.
▬▬▬TON SURF - OFFICIAL WALLET.





        ▄███████████████████▄
        █████████████████████
▄█████  █████████████████████
██████  ████             ████
███     █████████████████████
██████  ████             ████
██████  █████████████████████
███     █████████████████████
███████ ▀███████████████████▀
▀███████▄▄▄▄▄▄▄       ▀████
  ████▌                 ██ 
  ▐██▌                     
   █▌








TELEGRAM
FORUM
WIKI
CryptXC
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile WWW
February 07, 2017, 10:36:51 AM
 #256


Hi Chance567,

Withdrawals should be instant, but sorry we configured the fees incorrectly (as BOAT requires 0.1BOAT per transaction) hence it is pending.

Can you try cancelling you withdrawal and trying again? You can do this on your funds/withdrawal page next to status.

Let us know if you have any issues and we can manually process for you.

http://prntscr.com/e5kd62

Where again? >.>

I have manually processed your withdrawal, any future withdrawals should be instant Smiley
adroitful_one
Legendary
*
Offline Offline

Activity: 1568
Merit: 1041

1GhxHtabWhEpdb7e7oEJ2vd542n33BwTHR


View Profile
February 07, 2017, 11:35:19 AM
 #257


Hi Chance567,

Withdrawals should be instant, but sorry we configured the fees incorrectly (as BOAT requires 0.1BOAT per transaction) hence it is pending.

Can you try cancelling you withdrawal and trying again? You can do this on your funds/withdrawal page next to status.

Let us know if you have any issues and we can manually process for you.

http://prntscr.com/e5kd62

Where again? >.>

I have manually processed your withdrawal, any future withdrawals should be instant Smiley

This is not true.. I have requested a withdrawal to test a while ago now and it just says accepted under my account but no coins have appeared back into my wallet
attyk2000
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
February 07, 2017, 11:55:23 AM
 #258

Vote 45 on Nova.

BOAT   Doubloon   2017-02-05 23:19:46   Voting...   45 / 250   More Info!         Vote! Buy now!

https://twitter.com/koles_attila/status/828936206402584577

https://twitter.com/koles_attila/status/828930503550046208


BJ5gYqQMJYDSr2CAQYLY6WufGuWdi5VsZd

CryptXC
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile WWW
February 07, 2017, 12:00:39 PM
 #259


Hi Chance567,

Withdrawals should be instant, but sorry we configured the fees incorrectly (as BOAT requires 0.1BOAT per transaction) hence it is pending.

Can you try cancelling you withdrawal and trying again? You can do this on your funds/withdrawal page next to status.

Let us know if you have any issues and we can manually process for you.

http://prntscr.com/e5kd62

Where again? >.>

I have manually processed your withdrawal, any future withdrawals should be instant Smiley

This is not true.. I have requested a withdrawal to test a while ago now and it just says accepted under my account but no coins have appeared back into my wallet

Sorry about this, there a few odd things happening with the daemon. Are you able to try a withdraw of less than 100 and see if it is instant?

If you still have issues please let me know.
octavarium
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500



View Profile
February 07, 2017, 12:31:39 PM
 #260

exhanges
https://cryptxc.com/markets/boatbtc
 Grin Grin Grin
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 ... 97 »
  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!