Bitcoin Forum
January 23, 2026, 01:31:40 PM
Welcome,
Guest
. Please
login
or
register
.
News
: Latest Bitcoin Core release:
30.2
[
Torrent
]
Home
Help
Search
Login
Register
More
Bitcoin Forum
>
Bitcoin
>
Development & Technical Discussion
>
Hidden bitcoin core RPC commands
Pages: [
1
]
« previous topic
next topic »
Print
Author
Topic: Hidden bitcoin core RPC commands (Read 203 times)
tiagocs
(OP)
Newbie
Offline
Activity: 28
Merit: 24
Hidden bitcoin core RPC commands
July 01, 2020, 05:31:49 PM
Merited
by
ABCbits
(1)
#1
Recently I learned about
Code:
bitcoin-cli reconsiderblock <block_hash>
, which saved me from having to start the synchronization from scratch (was getting constantly ERROR: AcceptBlockHeader: block 00.. is marked invalid and the blockheader had a invalid difficulty).
Does anybody know about other hidden RPC commands that are not listed under
Code:
bitcoin-cli help
?
BitMaxz
Legendary
Offline
Activity: 3878
Merit: 3526
Happy new year!
Re: Hidden bitcoin core RPC commands
July 01, 2020, 05:50:46 PM
Merited
by
NeuroticFish
(1),
ABCbits
(1)
#2
Take a look at this one I just found them on Google and got the source from here "
Full list of RPCs - including hidden RPCs
"
And this is the link below that I got from the link above including the other hidden RPC commands.
-
https://github.com/bitcoin/bitcoin/blob/b05a89b2def301704df8f22f05a45ccf891c2b83/src/rpcserver.cpp#L268-380
▄▄
███
▄▄
▄▄
███████████
▄▄
▄
██████████████████
▄
▄
█████
▀▀▀█████▀▀▀
█████
▄
████
▌░░░░░░░░░░░░░▐
████
████
▌░░░░░░░░░░░░░▐
████
████
▀░░░▄▄░░░▄▄░░░▀
████
████
░░░██▀░░░▀██░░░
████
████
▄░░░░░▀█▀░░░░░▄
████
▀
█████
▄▄▄▄▄▄▄▄▄▄▄
█████
▀
▀
██████████████████
▀
▀▀
███████████
▀▀
▀▀
███
▀▀
.
betpanda
.io
│
ANONYMOUS & INSTANT
.......
ONLINE CASINO
.......
│
▄███████████████████████▄
█████████████████████████
█████████████████████████
███
█████
▀▀▀▀▀▀
████████
███
████
▀▀▀
█░▀▀░░░░░░▄
███████
████
░▄▄█▄▄▀█▄░░░█▄░▄
█████
████
▀██▀░▄█▀░░░█▀░░
██████
██████
░░▄▀░░░░▐░░░▐█▄
████
██████
▄▄█░▀▀░░░█▄▄▄
██████
█████████████████████████
█████████████████████████
█████████████████████████
▀███████████████████████▀
▄███████████████████████▄
█████████████████████████
██████████
▀░░░▀
██████████
███
██████
░░░░░░░██████
███
███████
█
░░░░░░░░░
█
███████
████████
░░░░░░░░░
████████
█████████
▄░░░░░▄
█████████
███████
▀▀▀█▄▄▄█▀▀▀
███████
██████
░░░░▄░▄░▄░░░░
██████
██████
░░░░█▀█▀█░░░░
██████
██████
░░░░░░░░░░░░░
██████
█████████████████████████
▀███████████████████████▀
▄███████████████████████▄
█████████████████████████
██████████
▀▀▀▀▀▀
█████████
███
████
▀▀░░░░░░░░░████
███
██████
▀
░░░░░░░░░░░
░▀
█████
██████
░░░░░░░░░░░░░░▀
████
██████
▄░░░░░░▄▄░░░░░░
████
████
▀▀▀▀▀░░░█░░█░░░░░
████
████
░▀░▀░░░░░▀▀░░░░░
█████
████
░▀░▀▄░░░░░░▄▄▄▄
██████
█████
░▀░
█████████████████
█████████████████████████
▀███████████████████████▀
.
SLOT
GAMES
....
SPORTS
....
LIVE
CASINO
│
▄░░▄█▄░░▄
▀█▀░▄▀▄░▀█▀
▄▄▄▄▄▄▄▄▄▄▄
█████████████
█░░░░░░░░░░░█
█████████████
▄▀▄
██
▀▄▄▄▄▄
███
▄▀▄
▄▀▄
██
▄
██
█▄
█
▄
██
▄▀▄
▄▀▄
█
▐▐▌
█
█
█
▐▐▌
█
▄▀▄
▄▀▄
█
█▀█
█
█
█
█▀█
█
▄▀▄
▄▀▄
█████
▀▄
████
▄▀▄
▀▄▀▄▀
█████
▀▄▀▄▀
▀▀▀▄█▀█▄▀▄▀▀
Regional Sponsor of the
Argentina National Team
achow101
Moderator
Legendary
Offline
Activity: 3878
Merit: 7589
Just writing some code
⇾
Re: Hidden bitcoin core RPC commands
July 01, 2020, 05:53:59 PM
Merited
by
BitMaxz
(1),
ABCbits
(1)
#3
The current hidden RPCs are:
Code:
invalidateblock
reconsiderblock
waitfornewblock
waitforblock
waitforblockheight
syncwithvalidationinterfacequeue
dumptxoutset
estimaterawfee
setmocktime
mockscheduler
echo
echojson
These RPCs are pretty much used only for tests and shouldn't be relied on for normal use. Their APIs may not be stable and may change at any time. These RPCs may also be removed at any time.
Bitcoin Core contributor |
Tip Me!
|
GitHub
|
GPG Key Fingerprint 0x17565732E08E5E41
tiagocs
(OP)
Newbie
Offline
Activity: 28
Merit: 24
Re: Hidden bitcoin core RPC commands
July 01, 2020, 07:38:51 PM
#4
Thank you both!
Pages: [
1
]
Print
Bitcoin Forum
>
Bitcoin
>
Development & Technical Discussion
>
Hidden bitcoin core RPC commands
« previous topic
next topic »
Jump to:
Please select a destination:
-----------------------------
Bitcoin
-----------------------------
=> Bitcoin Discussion
===> Legal
===> Press
===> Meetups
===> Important Announcements
=> Development & Technical Discussion
===> Wallet software
=====> Electrum
=====> Bitcoin Wallet for Android
=====> BitcoinJ
=====> Armory
=====> Mycelium
=====> Hardware wallets
=> Mining
===> Mining support
===> Pools
===> Mining software (miners)
===> Hardware
=====> Group buys
===> Mining speculation
=> Bitcoin Technical Support
=> Project Development
-----------------------------
Economy
-----------------------------
=> Economics
===> Speculation
=> Marketplace
===> Goods
=====> Computer hardware
=====> Digital goods
=======> Invites & Accounts
=====> Collectibles
===> Services
===> Currency exchange
===> Gambling
=====> Games and rounds
=====> Investor-based games
=====> Gambling discussion
===> Lending
=====> Long-term offers
===> Securities
===> Auctions
===> Service Announcements
=====> Micro Earnings
===> Service Discussion
=====> Web Wallets
=====> Exchanges
=> Trading Discussion
===> Scam Accusations
===> Reputation
-----------------------------
Other
-----------------------------
=> Meta
===> Bitcoin Wiki
=> Politics & Society
=> Beginners & Help
=> Off-topic
=> Serious discussion
===> Ivory Tower
=> Archival
===> New forum software
===> Корзина
===> CPU/GPU Bitcoin mining hardware
===> Chinese students
===> Obsolete (buying)
===> Obsolete (selling)
===> MultiBit
-----------------------------
Alternate cryptocurrencies
-----------------------------
=> Altcoin Discussion
=> Announcements (Altcoins)
===> Tokens (Altcoins)
=> Mining (Altcoins)
===> Pools (Altcoins)
=> Marketplace (Altcoins)
===> Service Announcements (Altcoins)
===> Service Discussion (Altcoins)
===> Bounties (Altcoins)
=> Speculation (Altcoins)
-----------------------------
Local
-----------------------------
=> العربية (Arabic)
===> العملات البديلة (Altcoins)
=====> النقاشات
===> إستفسارات و أسئلة المبتدئين
===> التعدين
===> النقاشات الأخرى
===> منصات التبادل
=> Bahasa Indonesia (Indonesian)
===> Marketplace (Bahasa Indonesia)
===> Mining (Bahasa Indonesia)
===> Altcoins (Bahasa Indonesia)
===> Trading dan Spekulasi
===> Ekonomi, Politik, dan Budaya
===> Topik Lainnya
=> Español (Spanish)
===> Mercado y Economía
=====> Servicios
=====> Trading y especulación
===> Hardware y Minería
===> Esquina Libre
===> Mercadillo
=====> Mexico
=====> Argentina
=====> España
=====> Centroamerica y Caribe
===> Primeros pasos y ayuda
===> Altcoins (criptomonedas alternativas)
=====> Minería de altcoins
=====> Servicios
=====> Tokens (Español)
=> 中文 (Chinese)
===> 跳蚤市场
===> 山寨币
===> 媒体
===> 挖矿
===> 离题万里
=> Hrvatski (Croatian)
===> Trgovina
===> Altcoins (Hrvatski)
=====> Announcements (Hrvatski)
===> Off-topic (Hrvatski)
=> Deutsch (German)
===> Anfänger und Hilfe
===> Mining (Deutsch)
===> Trading und Spekulation
===> Projektentwicklung
===> Off-Topic (Deutsch)
===> Treffen
===> Presse
===> Altcoins (Deutsch)
=====> Announcements (Deutsch)
===> Marktplatz
=====> Auktionen
=====> Suche
=====> Biete
=> Ελληνικά (Greek)
===> Αγορά
===> Mining Discussion (Ελληνικά)
===> Altcoins (Ελληνικά)
=====> Altcoin Announcements (Ελληνικά)
=====> Altcoin Mining (Ελληνικά)
=> עברית (Hebrew)
=> Français
===> Actualité et News
===> Débutants
===> Discussions générales et utilisation du Bitcoin
===> Mining et Hardware
===> Économie et spéculation
===> Place de marché
=====> Échanges
=====> Produits et services
=====> Petites annonces
===> Le Bitcoin et la loi
===> Wiki, documentation et traduction
===> Développement et technique
===> Vos sites et projets
===> Hors-sujet
===> Altcoins (Français)
=====> Annonces
=> India
===> Mining (India)
===> Marketplace (India)
===> Regional Languages (India)
===> Press & News from India
===> Alt Coins (India)
===> Buyer/ Seller Reputations (India)
===> Off-Topic (India)
=> Italiano (Italian)
===> Guide (Italiano)
===> Progetti
===> Discussioni avanzate e sviluppo
===> Trading, analisi e speculazione
===> Mercato
=====> Mercato valute
=====> Beni
=====> Servizi
=====> Esercizi commerciali
=====> Hardware/Mining (Italiano)
=====> Gambling (Italiano)
===> Accuse scam/truffe
===> Mining (Italiano)
===> Alt-Currencies (Italiano)
=====> Annunci
===> Raduni/Meeting (Italiano)
===> Crittografia e decentralizzazione
===> Off-Topic (Italiano)
=> 日本語 (Japanese)
===> アルトコイン
=> Nederlands (Dutch)
===> Markt
===> Gokken/lotterijen
===> Mining (Nederlands)
===> Beurzen
===> Alt Coins (Nederlands)
===> Off-topic (Nederlands)
===> Meetings (Nederlands)
=> Nigeria (Naija)
===> Politics and society (Naija)
===> Off-topic (Naija)
=> 한국어 (Korean)
===> 대체코인 Alt Coins (한국어)
=> Pilipinas
===> Altcoins (Pilipinas)
=====> Altcoin Announcements (Pilipinas)
===> Pamilihan
===> Others (Pilipinas)
=> Polski
===> Tablica ogłoszeń
===> Alternatywne kryptowaluty
=====> Nowe kryptowaluty i tokeny
=====> Tablica ogłoszeń (altcoiny)
=> Português (Portuguese)
===> Primeiros Passos (Iniciantes)
===> Economia & Mercado
===> Mineração em Geral
===> Desenvolvimento & Discussões Técnicas
===> Criptomoedas Alternativas
===> Brasil
===> Portugal
=> Русский (Russian)
===> Новички
===> Бизнес
=====> Барахолка
=====> Обменники
===> Идеи
===> Кодеры
===> Майнеры
===> Политика
===> Трейдеры
===> Альтернативные криптовалюты
=====> Токены
=====> Бayнти и aиpдpoпы
===> Хайпы
===> Работа
===> Разное
===> Oбcyждeниe Bitcoin
=====> Новости
=====> Юристы
=> Română (Romanian)
===> Anunturi importante
===> Offtopic
===> Market
=====> Discutii Servicii
===> Minerit
===> Tutoriale
===> Bine ai venit!
===> Presa
===> Altcoins (Monede Alternative)
=====> Anunturi Monede Alternative
=> Skandinavisk
=> Türkçe (Turkish)
===> Bitcoin Haberleri
===> Pazar Alanı
===> Madencilik
===> Ekonomi
===> Servisler
=====> Fonlar
===> Proje Geliştirme
===> Alternatif Kripto-Paralar
=====> Madencilik (Alternatif Kripto-Paralar)
=====> Duyurular (Alternatif Kripto-Paralar)
===> Konu Dışı
===> Yeni Başlayanlar & Yardım
===> Buluşmalar
=> Other languages/locations
Loading...