Bitcoin-Core

將比特幣核心中 utxo 的確認次數修改為 safe == true

  • June 6, 2020

我注意到,當我呼叫listunspentBitcoin Core 時,確認為 0 的 UTXO 被標記為unsafe,因此無法與sendtoaddressor一起使用fundrawtransaction。一旦有一個確認交易safe,我就可以花掉它。

能夠修改要考慮的 tx 的目標safe,例如將其設置為 3 或 6 個確認而不是僅 1 個,這將使我的生活更輕鬆,但我找不到它的選項。有什麼辦法嗎?

文件中:

listunspent ( minconf maxconf ["address",...] include_unsafe query_options )

返回在 minconf 和 maxconf(包括)確認之間的未使用交易輸出數組。

那麼listunspent 3對你有用嗎?

引用自:https://bitcoin.stackexchange.com/questions/95767