Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with bitcoind version check + wallet balance issue (new) #3

Open
crackeryo opened this issue Sep 14, 2024 · 14 comments
Open

Issue with bitcoind version check + wallet balance issue (new) #3

crackeryo opened this issue Sep 14, 2024 · 14 comments

Comments

@crackeryo
Copy link

When I run

ord --chain=fractal-mainnet wallet create or other wallet related command

I get
error: Bitcoin Core 24.0.0 or newer required, current version is 0.2.1

But I believe 0.2.1 is the latest version for fractal mainnet.

@slient-coder
Copy link
Collaborator

@crackeryo
Copy link
Author

We just fixed in https://github.com/fractal-bitcoin/ord/releases/tag/v0.20.0-f1

nice!

I found a new issue though

Things are displaying normally when my wallet is empty , but when I fund my wallet with some fb, and run ord wallet balance

I get the following error

error: output in wallet but not in ord server: 6dfc15fed08db47917a60ae50ccf0369aef58ee8c26be8c2c02ff025bd03ad4d:0

@crackeryo crackeryo changed the title Issue with bitcoind version check Issue with bitcoind version check + wallet balance issue (new) Sep 14, 2024
@slient-coder
Copy link
Collaborator

You need to make sure that you have started the ord server and indexed to the latest height.

curl -H 'accept: application/json' http://127.0.0.1:80/output/6dfc15fed08db47917a60ae50ccf0369aef58ee8c26be8c2c02ff025bd03ad4d:0

{
  address: 'bc1pw6apgvumtmv32gaed65x97z8p8nenwm739nxxu6hkukcdqvprfzstxa3u3',
  indexed: true,
  inscriptions: [],
  runes: {},
  sat_ranges: [ [ 3221348600242742, 3221348601242742 ] ],
  script_pubkey: 'OP_PUSHNUM_1 OP_PUSHBYTES_32 76ba14339b5ed91523b96ea862f84709e799bb7e8966637357b72d8681811a45',
  spent: false,
  transaction: '6dfc15fed08db47917a60ae50ccf0369aef58ee8c26be8c2c02ff025bd03ad4d',
  value: 1000000
}

@shizz-x
Copy link

shizz-x commented Sep 14, 2024

You need to make sure that you have started the ord server and indexed to the latest height.

curl -H 'accept: application/json' http://127.0.0.1:80/output/6dfc15fed08db47917a60ae50ccf0369aef58ee8c26be8c2c02ff025bd03ad4d:0

{
  address: 'bc1pw6apgvumtmv32gaed65x97z8p8nenwm739nxxu6hkukcdqvprfzstxa3u3',
  indexed: true,
  inscriptions: [],
  runes: {},
  sat_ranges: [ [ 3221348600242742, 3221348601242742 ] ],
  script_pubkey: 'OP_PUSHNUM_1 OP_PUSHBYTES_32 76ba14339b5ed91523b96ea862f84709e799bb7e8966637357b72d8681811a45',
  spent: false,
  transaction: '6dfc15fed08db47917a60ae50ccf0369aef58ee8c26be8c2c02ff025bd03ad4d',
  value: 1000000
}

sorry sir, how to make sure that i indexed a last block ?
my node response like {"code":0,"msg":"OK","data":{"trackerBlockHeight":18671,"nodeBlockHeight":18671,"latestBlockHeight":18671}}%

@shizz-x
Copy link

shizz-x commented Sep 14, 2024

You need to make sure that you have started the ord server and indexed to the latest height.

curl -H 'accept: application/json' http://127.0.0.1:80/output/6dfc15fed08db47917a60ae50ccf0369aef58ee8c26be8c2c02ff025bd03ad4d:0

{
  address: 'bc1pw6apgvumtmv32gaed65x97z8p8nenwm739nxxu6hkukcdqvprfzstxa3u3',
  indexed: true,
  inscriptions: [],
  runes: {},
  sat_ranges: [ [ 3221348600242742, 3221348601242742 ] ],
  script_pubkey: 'OP_PUSHNUM_1 OP_PUSHBYTES_32 76ba14339b5ed91523b96ea862f84709e799bb7e8966637357b72d8681811a45',
  spent: false,
  transaction: '6dfc15fed08db47917a60ae50ccf0369aef58ee8c26be8c2c02ff025bd03ad4d',
  value: 1000000
}

after i receive a deposit transaction a had this error with txid while trying get address (wallet receive) or other commands

./ord --config config wallet --name ord inscribe --fee-rate 30 --file /Users/jimmyalfredo/Desktop/a.png --destination bc1p4jcp2xfcqkk0mazm6t5yqscgjrq43vhdgel5u9uvm90avc3j6rzsfc444y
error: output in wallet but not in ord server: 0effcf583ca7fdc233a8d4ff5f8023c1d68c1d6d471789ea0e253250dcd49892:0

MEMPOOL

@shizz-x
Copy link

shizz-x commented Sep 14, 2024

by some reasons transactions may not indexed

@crackeryo
Copy link
Author

crackeryo commented Sep 14, 2024

curl -H 'accept: application/json' http://127.0.0.1:80/output/6dfc15fed08db47917a60ae50ccf0369aef58ee8c26be8c2c02ff025bd03ad4d:0

running curl returns the correct result.

I checked my bitcoin server using getindexinfo it's synced

{
"txindex": {
"synced": true,
"best_block_height": 18847
}
}

Also my ord server is synced to latest as well

Screenshot 2024-09-14 at 5 42 58 PM

But i'm still experiencing the same issue when I try to do anything with wallet.

(I added the --index-transactions flag before running the server but it doesn't change anything)

@pefish
Copy link

pefish commented Sep 15, 2024

curl -H 'accept: application/json' http://127.0.0.1:80/output/6dfc15fed08db47917a60ae50ccf0369aef58ee8c26be8c2c02ff025bd03ad4d:0

running curl returns the correct result.

I checked my bitcoin server using getindexinfo it's synced

{ "txindex": { "synced": true, "best_block_height": 18847 } }

Also my ord server is synced to latest as well

Screenshot 2024-09-14 at 5 42 58 PM **But** i'm still experiencing the same issue when I try to do anything with wallet.

(I added the --index-transactions flag before running the server but it doesn't change anything)

same problem

@slient-coder
Copy link
Collaborator

You can check out this issue. ordinals#3689

@shizz-x
Copy link

shizz-x commented Sep 15, 2024

@pefish @crackeryo i can give a solve but only in dm

@shizz-x
Copy link

shizz-x commented Sep 15, 2024

You can check out this issue. ordinals#3689

thanks

@crackeryo
Copy link
Author

@pefish @crackeryo i can give a solve but only in dm

👀 how do I reach out to you in DM? twitter/discord?

@shizz-x
Copy link

shizz-x commented Sep 15, 2024

discord ba1acka. @crackeryo

@shizz-x
Copy link

shizz-x commented Sep 15, 2024

ionnoion

ive add

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants