當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Bitcoin disconnectnode用法及代碼示例


比特幣(Bitcoin) RPC Network API中disconnectnode的用法及代碼示例。

用法:

disconnectnode ( "address" nodeid )

立即與指定的對等節點斷開連接。

可以提供‘address’和‘nodeid’中的一個嚴格標識該節點。

要通過nodeid斷開連接,請將‘address’設置為空字符串,或者僅使用命名的‘nodeid’參數進行調用。

參數1 - address

類型:字符串,可選,默認=後退到nodeid

節點的IP地址/端口

參數2 - nodeid

類型:數字,可選,默認=後備地址

節點ID(有關節點ID,請參見getpeerinfo)

示例

bitcoin-cli disconnectnode "192.168.0.6:8333"
bitcoin-cli disconnectnode "" 1
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "disconnectnode", "params": ["192.168.0.6:8333"] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "disconnectnode", "params": ["", 1] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/

相關用法


注:本文由純淨天空篩選整理自bitcoin.org大神的英文原創作品 Bitcoin disconnectnode。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。