Bitcoin Forum
March 11, 2026, 09:56:39 AM *
News: Latest Bitcoin Core release: 30.2 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 [12] 13 »  All
  Print  
Author Topic: Running Bitok - 0.3.19 Mainnet  (Read 4627 times)
wqy2706113
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 08, 2026, 07:49:20 AM
 #221

hi elvisjedusor
Sorry, I don't know how to post images. Here is part of the code.
[2026-03-08 15:37:13] New Work: Block 23210, Tx 0, Net Diff 0.10497, Ntime 69ad2729
                      Miner TTF @ 2400.98 h/s 2d04h, Net TTF @ 1466.20 kh/s 5m07s
[2026-03-08 15:37:18] New Work: Block 23210, Tx 0, Net Diff 0.10497, Ntime 69ad272e
                      Miner TTF @ 2484.65 h/s 2d02h, Net TTF @ 1466.20 kh/s 5m07s
[2026-03-08 15:37:23] New Work: Block 23210, Tx 0, Net Diff 0.10497, Ntime 69ad2733
                      Miner TTF @ 2522.76 h/s 2d01h, Net TTF @ 1466.20 kh/s 5m07s
[2026-03-08 15:37:28] New Work: Block 23210, Tx 0, Net Diff 0.10497, Ntime 69ad2738
                      Miner TTF @ 2510.25 h/s 2d01h, Net TTF @ 1466.20 kh/s 5m07s
[2026-03-08 15:37:33] New Work: Block 23210, Tx 0, Net Diff 0.10497, Ntime 69ad273d
                      Miner TTF @ 2483.19 h/s 2d02h, Net TTF @ 1466.20 kh/s 5m07s
[2026-03-08 15:37:38] yespower: http://127.0.0.1:8332
                      Periodic Report     5m04s        5m04s
                      Share rate        0.00/min     0.00/min
                      Hash rate          0.00h/s      0.00h/s   (2324.00h/s)
                      Submitted             0            0
                      Accepted              0            0        0.0%
                      Hi/Lo Share Diff  0 /  9e+99
[2026-03-08 15:37:38] New Work: Block 23210, Tx 0, Net Diff 0.10497, Ntime 69ad2742
                      Miner TTF @ 2451.08 h/s 2d03h, Net TTF @ 1466.20 kh/s 5m07s
[2026-03-08 15:37:43] New Work: Block 23210, Tx 0, Net Diff 0.10497, Ntime 69ad2747
                      Miner TTF @ 2378.53 h/s 2d04h, Net TTF @ 1466.20 kh/s 5m07s
elvisjedusor (OP)
Jr. Member
*
Offline Offline

Activity: 61
Merit: 5


View Profile
March 08, 2026, 08:30:33 AM
Last edit: March 08, 2026, 08:43:24 AM by elvisjedusor
 #222

..single-player mining to not have SHRE ..

This is normal for solo mining.

In solo mode there are no shares submitted, so the miner will show 0 accepted until a full block is found. The miner is working correctly.
wqy2706113
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 08, 2026, 01:34:57 PM
 #223

..single-player mining to not have SHRE ..

This is normal for solo mining.

In solo mode there are no shares submitted, so the miner will show 0 accepted until a full block is found. The miner is working correctly.


Can I specify my address here? And once I earn money mining on this node, can I send it to another node?
elvisjedusor (OP)
Jr. Member
*
Offline Offline

Activity: 61
Merit: 5


View Profile
March 08, 2026, 02:49:28 PM
 #224


Can I specify my address here? And once I earn money mining on this node, can I send it to another node?

1. No. This is solo mining, not a pool. The mining reward goes to the node's wallet (wallet.dat).

2. Yes. Once you receive block rewards, you can send them from the node using:
./bitokd sendtoaddress ADDRESS AMOUNT
Tongpu
Member
**
Offline Offline

Activity: 126
Merit: 10


View Profile WWW
March 08, 2026, 03:35:02 PM
Last edit: March 08, 2026, 03:52:04 PM by Tongpu
 #225

Lets make some fun and learn something new Cool
Im just locked 50$BITOK in a SHA256 hashlock script on the Bitok blockchain
1st word is hidden here:
  TXID: 40b65eacacd9dc1693ea48dc57b85bdc69f996dcf2a49c930b068ea1308f4995

2nd secret is hidden here:
  TXID: 65456d98f6cb62b0a13ccd0090035a0713a292d412301d6ad65e1b82deae49e7

how do i broadcast the spend trasncation? (:

This is hashlock data:
Code:
FUNDING_TXID 99a9e46537a91544a0f3e6f17e22a7eb708d6cb30ed04cefcb736ff9049d66c3
VOUT_INDEX 0
SCRIPT_HEX a8201804ab125392cdac647c3fb048f59c9d05fa4f103571239e2c379cb15084a5f187

Step by step:

Step 1. Combine the 3 secret words and encode to hex.
If you are on Linux/Mac, run:
Code:
  printf "WORD1WORD2WORD3" | xxd -p | tr -d '\n'
Replace WORD1WORD2WORD3 with your actual combined answer.
That output is your PREIMAGE_HEX.

Step 2. Create the claim transaction:
Code:
  ./bitokd createrawtransaction '[{"txid":"<FUNDING_TXID>","vout":<VOUT_INDEX>}]' '{"<YOUR_ADDRESS>":49.99}'
Copy the output hex. Call it SPEND_HEX.

Step 3. Inject the preimage:
Code:
  ./bitokd setscriptsig <SPEND_HEX> 0 '["<PREIMAGE_HEX>"]'
From the JSON output, copy the "hex" value. Call it SPEND_SIGNED.

Step 4. Verify before broadcasting:
Code:
  ./bitokd verifyscriptpair <SPEND_SIGNED> 0 <SCRIPT_HEX>
Must return: "verified": true
If false - your answer is wrong. Do not broadcast. Recheck.

Step 5. Broadcast and win:
Code:
  ./bitokd sendrawtransaction <SPEND_SIGNED>
The returned txid is your win proof.


⛏️Bitok Pool lastbitcoin.org | ⛓️Bitok explorer bitokd.run | 🚰Free faucet freebitok.com | Web-wallet wallet.bitokd.run
Pool address: 15hRoaxAZvYtxmQdYLrjrJ4CEQV3WfhqAS (BITOK donations arwelcome. I dont need BTC!)
wqy2706113
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 08, 2026, 05:26:46 PM
Last edit: March 08, 2026, 06:20:20 PM by Welsh
 #226

Maybe it's my fault.

I've read it so many times, but I still don't know how to play it. Are there any simple games I can try out?
Lets make some fun and learn something new Cool
Im just locked 50$BITOK in a SHA256 hashlock script on the Bitok blockchain
1st word is hidden here:
  TXID: 40b65eacacd9dc1693ea48dc57b85bdc69f996dcf2a49c930b068ea1308f4995

2nd secret is hidden here:
  TXID: 65456d98f6cb62b0a13ccd0090035a0713a292d412301d6ad65e1b82deae49e7

how do i broadcast the spend trasncation? (:

This is hashlock data:
Code:
FUNDING_TXID 99a9e46537a91544a0f3e6f17e22a7eb708d6cb30ed04cefcb736ff9049d66c3
VOUT_INDEX 0
SCRIPT_HEX a8201804ab125392cdac647c3fb048f59c9d05fa4f103571239e2c379cb15084a5f187

Step by step:

Step 1. Combine the 3 secret words and encode to hex.
If you are on Linux/Mac, run:
Code:
  printf "WORD1WORD2WORD3" | xxd -p | tr -d '\n'
Replace WORD1WORD2WORD3 with your actual combined answer.
That output is your PREIMAGE_HEX.

Step 2. Create the claim transaction:
Code:
  ./bitokd createrawtransaction '[{"txid":"<FUNDING_TXID>","vout":<VOUT_INDEX>}]' '{"<YOUR_ADDRESS>":49.99}'
Copy the output hex. Call it SPEND_HEX.

Step 3. Inject the preimage:
Code:
  ./bitokd setscriptsig <SPEND_HEX> 0 '["<PREIMAGE_HEX>"]'
From the JSON output, copy the "hex" value. Call it SPEND_SIGNED.

Step 4. Verify before broadcasting:
Code:
  ./bitokd verifyscriptpair <SPEND_SIGNED> 0 <SCRIPT_HEX>
Must return: "verified": true
If false - your answer is wrong. Do not broadcast. Recheck.

Step 5. Broadcast and win:
Code:
  ./bitokd sendrawtransaction <SPEND_SIGNED>
The returned txid is your win proof.



I think I know how to play now. I know what the first two words are. There's one question you have to answer: are there spaces between the words?
Lets make some fun and learn something new Cool
Im just locked 50$BITOK in a SHA256 hashlock script on the Bitok blockchain
1st word is hidden here:
  TXID: 40b65eacacd9dc1693ea48dc57b85bdc69f996dcf2a49c930b068ea1308f4995

2nd secret is hidden here:
  TXID: 65456d98f6cb62b0a13ccd0090035a0713a292d412301d6ad65e1b82deae49e7

how do i broadcast the spend trasncation? (:

This is hashlock data:
Code:
FUNDING_TXID 99a9e46537a91544a0f3e6f17e22a7eb708d6cb30ed04cefcb736ff9049d66c3
VOUT_INDEX 0
SCRIPT_HEX a8201804ab125392cdac647c3fb048f59c9d05fa4f103571239e2c379cb15084a5f187

Step by step:

Step 1. Combine the 3 secret words and encode to hex.
If you are on Linux/Mac, run:
Code:
  printf "WORD1WORD2WORD3" | xxd -p | tr -d '\n'
Replace WORD1WORD2WORD3 with your actual combined answer.
That output is your PREIMAGE_HEX.

Step 2. Create the claim transaction:
Code:
  ./bitokd createrawtransaction '[{"txid":"<FUNDING_TXID>","vout":<VOUT_INDEX>}]' '{"<YOUR_ADDRESS>":49.99}'
Copy the output hex. Call it SPEND_HEX.

Step 3. Inject the preimage:
Code:
  ./bitokd setscriptsig <SPEND_HEX> 0 '["<PREIMAGE_HEX>"]'
From the JSON output, copy the "hex" value. Call it SPEND_SIGNED.

Step 4. Verify before broadcasting:
Code:
  ./bitokd verifyscriptpair <SPEND_SIGNED> 0 <SCRIPT_HEX>
Must return: "verified": true
If false - your answer is wrong. Do not broadcast. Recheck.

Step 5. Broadcast and win:
Code:
  ./bitokd sendrawtransaction <SPEND_SIGNED>
The returned txid is your win proof.


Tongpu
Member
**
Offline Offline

Activity: 126
Merit: 10


View Profile WWW
March 08, 2026, 11:55:49 PM
 #227

I think I know how to play now. I know what the first two words are. There's one question you have to answer: are there spaces between the words?

When you have all 3 words (WORD1, WORD2, WORD3), combine them: no spaces, uppercase, in order WORD1WORD2WORD3

⛏️Bitok Pool lastbitcoin.org | ⛓️Bitok explorer bitokd.run | 🚰Free faucet freebitok.com | Web-wallet wallet.bitokd.run
Pool address: 15hRoaxAZvYtxmQdYLrjrJ4CEQV3WfhqAS (BITOK donations arwelcome. I dont need BTC!)
wqy2706113
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 09, 2026, 06:48:06 AM
 #228

Hello developers, I'm encountering some difficulties. My wallet can't send transactions. I receive a message indicating a transaction failure, and the wallet's web interface shows "Transaction Failed

Try Again". However, I can successfully send 0.5. Here's the successfully sent 0.5: tx7ae8adb2d121ca1ed7afde06b6f6c64d4dab03bf1f6227bbcfca13352d78d8dc. I also have 1000 Bitok in my wallet. How can I complete the transaction?

My wallet address is 18A9Pcnpq8TnEWY19zY6PKWJTHqF5o3p9Q

Can I specify my address here? And once I earn money mining on this node, can I send it to another node?

1. No. This is solo mining, not a pool. The mining reward goes to the node's wallet (wallet.dat).

2. Yes. Once you receive block rewards, you can send them from the node using:
./bitokd sendtoaddress ADDRESS AMOUNT
elvisjedusor (OP)
Jr. Member
*
Offline Offline

Activity: 61
Merit: 5


View Profile
March 09, 2026, 11:40:23 AM
Last edit: March 10, 2026, 12:09:15 PM by Welsh
 #229

Hello developers, I'm encountering some difficulties. My wallet can't send transactions. I receive a message indicating a transaction failure, and the wallet's web interface shows "Transaction Failed

Try Again". However, I can successfully send 0.5. Here's the successfully sent 0.5: tx7ae8adb2d121ca1ed7afde06b6f6c64d4dab03bf1f6227bbcfca13352d78d8dc. I also have 1000 Bitok in my wallet. How can I complete the transaction?

My wallet address is 18A9Pcnpq8TnEWY19zY6PKWJTHqF5o3p9Q


I can see transactions already sent from this address: https://bitokd.run/address/18A9Pcnpq8TnEWY19zY6PKWJTHqF5o3p9Q

If you used address across multiple wallets (import/export) or have problems with wallet, run rescan.

How to rescan wallet:


Web wallet: Settings - Resync Wallet

Daemon (node): ./bitokd rescanwallet

GUI wallet: Import any new private key to trigger a rescan. For example:

- Generate a new address in the web wallet
- Copy the private key
- GUI - New - Import private key

Web Wallet Update

Added mempool transaction scanning. Unconfirmed incoming/outgoing transactions are now visible before the next block is mined

Improved error display with context-aware messages and refresh hints

History page now uses auto-refresh polling

Send page now enforces maximum spendable amount (including pending transactions)

History page now includes mempool transactions

Laheeboo
Newbie
*
Online Online

Activity: 30
Merit: 0


View Profile
March 10, 2026, 03:33:46 AM
 #230

Anyone else all of the sudden started to get rejected shares on the pool?

in the last couple of hours 57% of my shares are accepted, 10k+ shares before that no problem.

I restarted my computer and running the same exact code with the params and everything and it's still refusing almost 50% of the shares to the pool. (lastbitcoin poolnot sure if there are any other ones).
Nuna5479
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
March 10, 2026, 05:08:10 AM
 #231

Noticed the same.
wqy2706113
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 10, 2026, 05:25:34 AM
 #232

There's an idiot attacking the pool.
Anyone else all of the sudden started to get rejected shares on the pool?

in the last couple of hours 57% of my shares are accepted, 10k+ shares before that no problem.

I restarted my computer and running the same exact code with the params and everything and it's still refusing almost 50% of the shares to the pool. (lastbitcoin poolnot sure if there are any other ones).
Tongpu
Member
**
Offline Offline

Activity: 126
Merit: 10


View Profile WWW
March 10, 2026, 08:10:33 AM
 #233

Anyone else all of the sudden started to get rejected shares on the pool?
Fixed

Lets make some fun and learn something new Cool
Im just locked 50$BITOK in a SHA256 hashlock script on the Bitok blockchain
1st word is hidden here:
  TXID: 40b65eacacd9dc1693ea48dc57b85bdc69f996dcf2a49c930b068ea1308f4995

2nd secret is hidden here:
  TXID: 65456d98f6cb62b0a13ccd0090035a0713a292d412301d6ad65e1b82deae49e7

All 3 secrets released
3rd word hidden here:
Bitok tx: bf11263580230fde4e47ad65a8e562bbc2aaf28f184046458873e1f853252b86

Combine them in order, no spaces, uppercase and unlock 50 $BITOK


⛏️Bitok Pool lastbitcoin.org | ⛓️Bitok explorer bitokd.run | 🚰Free faucet freebitok.com | Web-wallet wallet.bitokd.run
Pool address: 15hRoaxAZvYtxmQdYLrjrJ4CEQV3WfhqAS (BITOK donations arwelcome. I dont need BTC!)
wqy2706113
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 10, 2026, 08:47:24 AM
 #234

done  RECIVE50bitok wiat tx
Anyone else all of the sudden started to get rejected shares on the pool?
Fixed

Lets make some fun and learn something new Cool
Im just locked 50$BITOK in a SHA256 hashlock script on the Bitok blockchain
1st word is hidden here:
  TXID: 40b65eacacd9dc1693ea48dc57b85bdc69f996dcf2a49c930b068ea1308f4995

2nd secret is hidden here:
  TXID: 65456d98f6cb62b0a13ccd0090035a0713a292d412301d6ad65e1b82deae49e7

All 3 secrets released
3rd word hidden here:
Bitok tx: bf11263580230fde4e47ad65a8e562bbc2aaf28f184046458873e1f853252b86

Combine them in order, no spaces, uppercase and unlock 50 $BITOK


coderzzz
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
March 10, 2026, 09:00:58 AM
Last edit: March 10, 2026, 09:18:39 AM by coderzzz
 #235

Funding TXID
bf11263580230fde4e47ad65a8e562bbc2aaf28f184046458873e1f853252b86
Script and amount auto-load when you paste the full TXID

Output Index (Vout)
0
Which output index holds the contract (usually 0)

Contract Script Hex
6a064c4547414359
The scriptPubKey — loaded automatically when you paste the TXID

Funded Amount
49.99
BITOK
Auto-loaded from transaction

Network Fee
0.01
BITOK
Secret (Preimage)
4b454550424954434f494e4c454741435x
The original text secret used when creating the contract       error:  Missing inputs
Tongpu
Member
**
Offline Offline

Activity: 126
Merit: 10


View Profile WWW
March 10, 2026, 09:20:12 AM
 #236

Funding TXID
bf11263580230fde4e47ad65a8e562bbc2aaf28f184046458873e1f853252b86
The original text secret used when creating the contract       error:  Missing inputs

Funding txid is not correct and my hashlock is custom script, not template from web wallet.
Follow this: https://bitcointalk.org/index.php?topic=5571165.msg66486671#msg66486671

⛏️Bitok Pool lastbitcoin.org | ⛓️Bitok explorer bitokd.run | 🚰Free faucet freebitok.com | Web-wallet wallet.bitokd.run
Pool address: 15hRoaxAZvYtxmQdYLrjrJ4CEQV3WfhqAS (BITOK donations arwelcome. I dont need BTC!)
coderzzz
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
March 10, 2026, 09:42:06 AM
 #237

Funding TXID
bf11263580230fde4e47ad65a8e562bbc2aaf28f184046458873e1f853252b86
The original text secret used when creating the contract       error:  Missing inputs

Funding txid is not correct and my hashlock is custom script, not template from web wallet.
Follow this: https://bitcointalk.org/index.php?topic=5571165.msg66486671#msg66486671

./bitokd verifyscriptpair 0100000001c3669d04f96f73cbef4cd00eb36c8d70eba7227ef1e6f3a04415a93765e4a99900000 00012114b454550424954434f494e4c4547414359ffffffff01c0aff629010000001976a91460e0 f5808ec26a23210a41943484db2b3e39803c88ac00000000 0 a8201804ab125392cdac647c3fb048f59c9d05fa4f103571239e2c379cb15084a5f187
{
    "verified" : true,
    "inputIndex" : 0,
    "scriptSig" : "114b454550424954434f494e4c4547414359",
    "scriptSigAsm" : "4b454550424954434f494e4c4547414359",
    "scriptPubKey" : "a8201804ab125392cdac647c3fb048f59c9d05fa4f103571239e2c379cb15084a5f187",
    "scriptPubKeyAsm" : "OP_SHA256 1804ab125392cdac647c3fb048f59c9d05fa4f103571239e2c379cb15084a5f1 OP_EQUAL",
    "type" : "nonstandard",
    "flags" : "exec"
}
root@worker1:~/zzz/bitokd# ./bitokd sendrawtransaction 0100000001c3669d04f96f73cbef4cd00eb36c8d70eba7227ef1e6f3a04415a93765e4a99900000 00012114b454550424954434f494e4c4547414359ffffffff01c0aff629010000001976a91460e0 f5808ec26a23210a41943484db2b3e39803c88ac00000000
error: Missing inputs
wqy2706113
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
March 10, 2026, 10:51:58 AM
Last edit: March 10, 2026, 12:07:10 PM by Welsh
 #238

Claim completed. Here is the transaction proof.

Due to forum restrictions, I cannot embed images yet. Here is my claim proof:

TXID: 8924f5b8846b93bef8dc73a5718a96ae2b87bdc99f1b6ffb9e195442fbe61632
Proof Image (Imgur): https://imgur.com/a/zPlzbos
Funding TXID
bf11263580230fde4e47ad65a8e562bbc2aaf28f184046458873e1f853252b86
The original text secret used when creating the contract       error:  Missing inputs

Funding txid is not correct and my hashlock is custom script, not template from web wallet.
Follow this: https://bitcointalk.org/index.php?topic=5571165.msg66486671#msg66486671

0924f5b0046b93bef8dc73a5710a96ae2b07bdc99f1b6ffb9e195442fbe61632  
Claim completed. Here is the transaction proof.

Due to forum restrictions, I cannot embed images yet. Here is my claim proof:

TXID: 8924f5b8846b93bef8dc73a5718a96ae2b87bdc99f1b6ffb9e195442fbe61632
Proof Image (Imgur): https://imgur.com/a/zPlzbos
Funding TXID
bf11263580230fde4e47ad65a8e562bbc2aaf28f184046458873e1f853252b86
The original text secret used when creating the contract       error:  Missing inputs

Funding txid is not correct and my hashlock is custom script, not template from web wallet.
Follow this: https://bitcointalk.org/index.php?topic=5571165.msg66486671#msg66486671

I have successfully claimed the funds from the hashlock script.

Transaction Details:

TXID: 0924f5b0046b93bef8dc73a5710a96ae2b07bdc99f1b6ffb9e195442fbe61632

Block: 23616

Decoded Preimage: KEEPBITCOINLEGACY (ASCII)

Receiving Address: 18A9Pcnpq8TnEWY19zY6PKWJTHqF5o3p9Q
0924f5b0046b93bef8dc73a5710a96ae2b07bdc99f1b6ffb9e195442fbe61632  
Claim completed. Here is the transaction proof.

Due to forum restrictions, I cannot embed images yet. Here is my claim proof:

TXID: 8924f5b8846b93bef8dc73a5718a96ae2b87bdc99f1b6ffb9e195442fbe61632
Proof Image (Imgur): https://imgur.com/a/zPlzbos
Funding TXID
bf11263580230fde4e47ad65a8e562bbc2aaf28f184046458873e1f853252b86
The original text secret used when creating the contract       error:  Missing inputs

Funding txid is not correct and my hashlock is custom script, not template from web wallet.
Follow this: https://bitcointalk.org/index.php?topic=5571165.msg66486671#msg66486671
Tongpu
Member
**
Offline Offline

Activity: 126
Merit: 10


View Profile WWW
March 10, 2026, 10:54:26 AM
 #239

root@worker1:~/zzz/bitokd# ./bitokd sendrawtransaction 0100000001c3669d04f96f73cbef4cd00eb36c8d70eba7227ef1e6f3a04415a93765e4a99900000 00012114b454550424954434f494e4c4547414359ffffffff01c0aff629010000001976a91460e0 f5808ec26a23210a41943484db2b3e39803c88ac00000000
error: Missing inputs


This mean UTXO is already spent. Check status:
https://bitokd.run/contract/99a9e46537a91544a0f3e6f17e22a7eb708d6cb30ed04cefcb736ff9049d66c3/0

In this tx: https://bitokd.run/tx/0924f5b0046b93bef8dc73a5710a96ae2b07bdc99f1b6ffb9e195442fbe61632
This address: 18A9Pcnpq8TnEWY19zY6PKWJTHqF5o3p9Q

I have successfully claimed the funds from the hashlock script.

Transaction Details:

TXID: 0924f5b0046b93bef8dc73a5710a96ae2b07bdc99f1b6ffb9e195442fbe61632

Block: 23616

Decoded Preimage: KEEPBITCOINLEGACY (ASCII)

Receiving Address: 18A9Pcnpq8TnEWY19zY6PKWJTHqF5o3p9Q

Congratulations!

KEEP BITCOIN LEGACY!

⛏️Bitok Pool lastbitcoin.org | ⛓️Bitok explorer bitokd.run | 🚰Free faucet freebitok.com | Web-wallet wallet.bitokd.run
Pool address: 15hRoaxAZvYtxmQdYLrjrJ4CEQV3WfhqAS (BITOK donations arwelcome. I dont need BTC!)
EKLETTICK
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile
March 10, 2026, 11:06:22 AM
 #240

Hello developers, I'm encountering some difficulties. My wallet can't send transactions. I receive a message indicating a transaction failure, and the wallet's web interface shows "Transaction Failed

Try Again". However, I can successfully send 0.5. Here's the successfully sent 0.5: tx7ae8adb2d121ca1ed7afde06b6f6c64d4dab03bf1f6227bbcfca13352d78d8dc. I also have 1000 Bitok in my wallet. How can I complete the transaction?

My wallet address is 18A9Pcnpq8TnEWY19zY6PKWJTHqF5o3p9Q


I can see transactions already sent from this address: https://bitokd.run/address/18A9Pcnpq8TnEWY19zY6PKWJTHqF5o3p9Q

If you used address across multiple wallets (import/export) or have problems with wallet, run rescan.

How to rescan wallet:


Web wallet: Settings - Resync Wallet

Daemon (node): ./bitokd rescanwallet

GUI wallet: Import any new private key to trigger a rescan. For example:

- Generate a new address in the web wallet
- Copy the private key
- GUI - New - Import private key

I sent a transaction of 1000 bitok with an old gui vallet version , and the transaction still unconfirmed from days now , and the balance now doesn t show the 1000 bitok that I try to sent , there is a way to get the transaction confirmed or a way to get back my 1000 bitok ? thank you
Pages: « 1 2 3 4 5 6 7 8 9 10 11 [12] 13 »  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!