Перейти к содержанию

Сообщение добавил Hlorofos

Все полезные ссылки и FAQ можно найти в первом сообщении. Прежде чем задать вопрос, посмотрите там.

Рекомендуемые сообщения

, Так если будут проблемы с первой тразакцией вдруг, с которой получена сдача, то попадет тот кто принимает, а не отправляет, у него платеж не будет подтверждаться. Кошелек сам нужную комиссию добавляет, чтобы проблем не было, вот и думает, что сдачу себе можно использовать без опасений.

Ссылка на комментарий
Поделиться на другие сайты

  • Ответов 3,9 тыс
  • Создана
  • Последний ответ

Топ авторов темы

Bitcoin Core version 0.9.0rc3 32-bit / 64-bit :
https://bitcoin.org/bin/0.9.0/test/
 
 
This is a release candidate for a new major version. A major version brings both new features and bug fixes.

 

This is a Development version so it is not intended for normal use, it is only intended to test, debug and see what is comming.

Please report bugs using the issue tracker at github:

https://github.com/bitcoin/bitcoin/issues

How to Upgrade
--------------

If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), uninstall all
earlier versions of Bitcoin, then run the installer (on Windows) or just copy
over /Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).

If you are upgrading from version 0.7.2 or earlier, the first time you run
0.9.0 your blockchain files will be re-indexed, which will take anywhere from
30 minutes to several hours, depending on the speed of your machine.

On Windows, do not forget to uninstall all earlier versions of the Bitcoin
client first, especially if you are switching to the 64-bit version.

Windows 64-bit installer
-------------------------

New in 0.9.0 is the Windows 64-bit version of the client. There have been
frequent reports of users running out of virtual memory on 32-bit systems
during the initial sync. Because of this it is recommended to install the
64-bit version if your system supports it.

NOTE: Release candidate 2 Windows binaries are not code-signed; use PGP
and the SHA256SUMS.asc file to make sure your binaries are correct.
In the final 0.9.0 release, Windows setup.exe binaries will be code-signed.

OSX 10.5 / 32-bit no longer supported
-------------------------------------

0.9.0 drops support for older Macs. The minimum requirements are now:
* A 64-bit-capable CPU (see http://support.apple.com/kb/ht3696);
* Mac OS 10.6 or later (see https://support.apple.com/kb/ht1633).

Downgrading warnings
--------------------

The 'chainstate' for this release is not always compatible with previous
releases, so if you run 0.9 and then decide to switch back to a
0.8.x release you might get a blockchain validation error when starting the
old release (due to 'pruned outputs' being omitted from the index of
unspent transaction outputs).

Running the old release with the -reindex option will rebuild the chainstate
data structures and correct the problem.

Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan
the blockchain for missing spent coins, which will take a long time (tens
of minutes on a typical machine).

Rebranding to Bitcoin Core
---------------------------

To reduce confusion between Bitcoin-the-network and Bitcoin-the-software we
have renamed the reference client to Bitcoin Core.

Autotools build system
-----------------------

For 0.9.0 we switched to an autotools-based build system instead of individual
(q)makefiles.

Using the standard "./autogen.sh; ./configure; make" to build Bitcoin-Qt and
bitcoind makes it easier for experienced open source developers to contribute
to the project.

Be sure to check doc/build-*.md for your platform before building from source.

Bitcoin-cli
-------------

Another change in the 0.9 release is moving away from the bitcoind executable
functioning both as a server and as a RPC client. The RPC client functionality
("tell the running bitcoin daemon to do THIS") was split into a separate
executable, 'bitcoin-cli'. The RPC client code will eventually be removed from
bitcoind, but will be kept for backwards compatibility for a release or two.

`walletpassphrase` RPC
-----------------------

The behavior of the `walletpassphrase` RPC when the wallet is already unlocked
has changed between 0.8 and 0.9.

The 0.8 behavior of `walletpassphrase` is to fail when the wallet is already unlocked:

> walletpassphrase 1000
walletunlocktime = now + 1000
> walletpassphrase 10
Error: Wallet is already unlocked (old unlock time stays)

The new behavior of `walletpassphrase` is to set a new unlock time overriding
the old one:

> walletpassphrase 1000
walletunlocktime = now + 1000
> walletpassphrase 10
walletunlocktime = now + 10 (overriding the old unlock time)

Transaction malleability-related fixes
--------------------------------------

This release contains a few fixes for transaction ID (TXID) malleability
issues:

- -nospendzeroconfchange command-line option, to avoid spending
zero-confirmation change
- IsStandard() transaction rules tightened to prevent relaying and mining of
mutated transactions
- Additional information in listtransactions/gettransaction output to
report wallet transactions that conflict with each other because
they spend the same outputs.
- Bug fixes to the getbalance/listaccounts RPC commands, which would report
incorrect balances for double-spent (or mutated) transactions.
- New option: -zapwallettxes to rebuild the wallet's transaction information

Transaction Fees
----------------

This release drops the default fee required to relay transactions across the
network and for miners to consider the transaction in their blocks to
0.01mBTC per kilobyte.

Note that getting a transaction relayed across the network does NOT guarantee
that the transaction will be accepted by a miner; by default, miners fill
their blocks with 50 kilobytes of high-priority transactions, and then with
700 kilobytes of the highest-fee-per-kilobyte transactions.

The minimum relay/mining fee-per-kilobyte may be changed with the
minrelaytxfee option. Note that previous releases incorrectly used
the mintxfee setting to determine which low-priority transactions should
be considered for inclusion in blocks.

The wallet code still uses a default fee for low-priority transactions of
0.1mBTC per kilobyte. During periods of heavy transaction volume, even this
fee may not be enough to get transactions confirmed quickly; the mintxfee
option may be used to override the default.

0.9.0rc3 Release notes
=======================

RPC:

- New notion of 'conflicted' transactions, reported as confirmations: -1
- 'listreceivedbyaddress' now provides tx ids
- Add raw transaction hex to 'gettransaction' output
- Updated help and tests for 'getreceivedby(account|address)'
- In 'getblock', accept 2nd 'verbose' parameter, similar to getrawtransaction,
but defaulting to 1 for backward compatibility
- Add 'verifychain', to verify chain database at runtime
- Add 'dumpwallet' and 'importwallet' RPCs
- 'keypoolrefill' gains optional size parameter
- Add 'getbestblockhash', to return tip of best chain
- Add 'chainwork' (the total work done by all blocks since the genesis block)
to 'getblock' output
- Make RPC password resistant to timing attacks
- Clarify help messages and add examples
- Add 'getrawchangeaddress' call for raw transaction change destinations
- Reject insanely high fees by default in 'sendrawtransaction'
- Add RPC call 'decodescript' to decode a hex-encoded transaction script
- Make 'validateaddress' provide redeemScript
- Add 'getnetworkhashps' to get the calculated network hashrate
- New RPC 'ping' command to request ping, new 'pingtime' and 'pingwait' fields
in 'getpeerinfo' output
- Adding new 'addrlocal' field to 'getpeerinfo' output
- Add verbose boolean to 'getrawmempool'
- Add rpc command 'getunconfirmedbalance' to obtain total unconfirmed balance
- Explicitly ensure that wallet is unlocked in `importprivkey`
- Add check for valid keys in `importprivkey`

Command-line options:

- New option: -nospendzeroconfchange to never spend unconfirmed change outputs
- New option: -zapwallettxes to rebuild the wallet's transaction information
- Rename option '-tor' to '-onion' to better reflect what it does
- Add '-disablewallet' mode to let bitcoind run entirely without wallet (when
built with wallet)
- Update default '-rpcsslciphers' to include TLSv1.2
- make '-logtimestamps' default on and rework help-message
- RPC client option: '-rpcwait', to wait for server start
- Remove '-logtodebugger'
- Allow `-noserver` with bitcoind

Block-chain handling and storage:

- Update leveldb to 1.15
- Check for correct genesis (prevent cases where a datadir from the wrong
network is accidentally loaded)
- Allow txindex to be removed and add a reindex dialog
- Log aborted block database rebuilds
- Store orphan blocks in serialized form, to save memory
- Limit the number of orphan blocks in memory to 750
- Fix non-standard disconnected transactions causing mempool orphans
- Add a new checkpoint at block 279,000

Wallet:

- Bug fixes and new regression tests to correctly compute
the balance of wallets containing double-spent (or mutated) transactions
- Store key creation time. Calculate whole-wallet birthday.
- Optimize rescan to skip blocks prior to birthday
- Let user select wallet file with -wallet=foo.dat
- Consider generated coins mature at 101 instead of 120 blocks
- Improve wallet load time
- Don't count txins for priority to encourage sweeping
- Don't create empty transactions when reading a corrupted wallet
- Fix rescan to start from beginning after importprivkey
- Only create signatures with low S values

Mining:

- Increase default -blockmaxsize/prioritysize to 750K/50K
- 'getblocktemplate' does not require a key to create a block template
- Mining code fee policy now matches relay fee policy

Protocol and network:

- Drop the fee required to relay a transaction to 0.01mBTC per kilobyte
- Send tx relay flag with version
- New 'reject' P2P message (BIP 0061, see
https://gist.github.com/gavinandresen/7079034 for draft)
- Dump addresses every 15 minutes instead of 10 seconds
- Relay OP_RETURN data TxOut as standard transaction type
- Remove CENT-output free transaction rule when relaying
- Lower maximum size for free transaction creation
- Send multiple inv messages if mempool.size > MAX_INV_SZ
- Split MIN_PROTO_VERSION into INIT_PROTO_VERSION and MIN_PEER_PROTO_VERSION
- Do not treat fFromMe transaction differently when broadcasting
- Process received messages one at a time without sleeping between messages
- Improve logging of failed connections
- Bump protocol version to 70002
- Add some additional logging to give extra network insight
- Added new DNS seed from bitcoinstats.com

Validation:

- Log reason for non-standard transaction rejection
- Prune provably-unspendable outputs, and adapt consistency check for it.
- Detect any sufficiently long fork and add a warning
- Call the -alertnotify script when we see a long or invalid fork
- Fix multi-block reorg transaction resurrection
- Reject non-canonically-encoded serialization sizes
- Reject dust amounts during validation
- Accept nLockTime transactions that finalize in the next block

Build system:

- Switch to autotools-based build system
- Build without wallet by passing `--disable-wallet` to configure, this
removes the BerkeleyDB dependency
- Upgrade gitian dependencies (libpng, libz, libupnpc, boost, openssl) to more
recent versions
- Windows 64-bit build support
- Solaris compatibility fixes
- Check integrity of gitian input source tarballs
- Enable full GCC Stack-smashing protection for all OSes

GUI:

- Switch to Qt 5.2.0 for Windows build
- Add payment request (BIP 0070) support
- Improve options dialog
- Show transaction fee in new send confirmation dialog
- Add total balance in overview page
- Allow user to choose data directory on first start, when data directory is
missing, or when the -choosedatadir option is passed
- Save and restore window positions
- Add vout index to transaction id in transactions details dialog
- Add network traffic graph in debug window
- Add open URI dialog
- Add Coin Control Features
- Improve receive coins workflow: make the 'Receive' tab into a form to request
payments, and move historical address list functionality to File menu.
- Rebrand to `Bitcoin Core`
- Move initialization/shutdown to a thread. This prevents "Not responding"
messages during startup. Also show a window during shutdown.
- Don't regenerate autostart link on every client startup
- Show and store message of normal bitcoin:URI
- Fix richtext detection hang issue on very old Qt versions
- OS X: Make use of the 10.8+ user notification center to display Growl-like
notifications
- OS X: Added NSHighResolutionCapable flag to Info.plist for better font
rendering on Retina displays.
- OS X: Fix bitcoin-qt startup crash when clicking dock icon
- Linux: Fix Gnome bitcoin: URI handler

Miscellaneous:

- Add Linux script (contrib/qos/tc.sh) to limit outgoing bandwidth
- Add '-regtest' mode, similar to testnet but private with instant block
generation with 'setgenerate' RPC.
- Add 'linearize.py' script to contrib, for creating bootstrap.dat
- Add separate bitcoin-cli client

 

Изменено пользователем BuTaJIu4eK
Ссылка на комментарий
Поделиться на другие сайты

Bitcoin Core version 0.9.0 FINAL of Bitcoin Core (aka Bitcoin QT)  32-bit / 64-bit :
https://bitcoin.org/bin/0.9.0

Полный список изменений https://bitcoin.org/bin/0.9.0/README.txt

Ссылка на комментарий
Поделиться на другие сайты

Подскажите незнающему:

Копал в соло FugueCoin около суток не обрубал в "не зрелые" было около 1000 FC,я сделал ребут,запустил кошелек и из этой 1000 только 200 перешло в баланс после синхронизации а остальные просто пропали.

 

Вот что показывает в транзакциях

post-12142-0-90283200-1395259436_thumb.png

Изменено пользователем shurik29
Ссылка на комментарий
Поделиться на другие сайты

Здравствуйте! вот вышла новая версяи кошелька

Как будет правильно обновить кошелек?

У меня есть кошелек версии предъидущей.

И есть скачанные все цепочки.

Все вместе весит около 18 гигов.

В этом кошельке у меня есть несколько адресов. И там же находится небольшое количество биткоин.

Я не хочу потерять свои адреса и баланс.

а также не хочу заново качать все данные.

Возможно ли это?

Изменено пользователем bertolai
Ссылка на комментарий
Поделиться на другие сайты

@bertolai, раньше срабатывало простое обновление папки с кошельком. Вообще перед любыми действиями архивируй wallet.dat сначала. Если папка не указывалась отдельная для базы, то должен сам все подхватить, если же указывалась, то применить ту же настройку ярлыка или коммандный файл к новому кошельку.

Ссылка на комментарий
Поделиться на другие сайты

@bertolai, раньше срабатывало простое обновление папки с кошельком. Вообще перед любыми действиями архивируй wallet.dat сначала. Если папка не указывалась отдельная для базы, то должен сам все подхватить, если же указывалась, то применить ту же настройку ярлыка или коммандный файл к новому кошельку.

хороший совет

Ссылка на комментарий
Поделиться на другие сайты

нагенерировал милион биткоин адресов в vanitygen , если их импортировать в кошелек , занимать они будут всего 512мб .

хочу сделать эксперимент и попытать удачу

можно написать скрипт , вводящий команду importprivkey , но это займет слишком много вреиени

теперь вопрос : как импортировать ключи быстрее ?

Ссылка на комментарий
Поделиться на другие сайты

Батник, с importprivkey <key> false. Импортируются почти мгновенно.

Ссылка на комментарий
Поделиться на другие сайты

как этот батник должен выглядить?


в файле все выглядит в формате

Pattern: 1
Address: 131Gf8gi69cxfNFC2M4u1XkZW327W52Dko
Privkey: 5KRUMtX7vnyJGJMENaFASVHLBwu5tk9vkTVPTX1EvXXBcZxe56N
Ссылка на комментарий
Поделиться на другие сайты

@rus084,

Мсье знает толк в извращениях.

Запуск клиента с ключом -keypoll 1000000 сразу даст на выходе требуемый результат. А вообще не менее эффективно сточки зрения теорвера на улицу выглянуть, не падают ли с неба золотые слитки сегодня после шести вечера.

Ссылка на комментарий
Поделиться на другие сайты

  • 3 недели спустя...

Здравствуйте.

Помогите, пожалуйста, решить проблему с переносом.

Недавно переустановил винду. Установил bitcoin-qt, дождался скачивания блоков, вышел. Заменил  wallet.dat на свой (сохранённый). Запустил.

После сканирования вроде всё нормально. Транзакции видны. Сумма не счёте прежняя. Но при попытке перевести битки на другой кошелек получаю сначала это:

image.jpg

потом это:

image.jpg

Перезапускаюсь, пересканируюсь. Вроде бы всё ОК. Но при попытке нажать ФАЙЛ->ВЫХОД получаю ошибку 30974:

image.jpg

 

P.S. Переустанавливал ОС потому, что старый HDD посыпался. Может ли  быть так, что файл wallet.dat повреждён и это является причиной?

За решение проблемы готов отдать 1 BTC.

Изменено пользователем dobroza
Ссылка на комментарий
Поделиться на другие сайты

Быкапов естественно нет? :rolleyes:

Можно попробовать экспорт-импорт ключа.

У пользователя админские права есть?

Ссылка на комментарий
Поделиться на другие сайты

Бэкапов увы нет. Только файл wallet.dat

Давайте попробуем экспорт- импорт. Соответствующие права есть. Подскажите как, плиз.

Ссылка на комментарий
Поделиться на другие сайты

рекамендую попробовать на другом компьютере установить кошелёк закрыть, подменить wallet.dat, запустить кошелёк и дождаться пока загрузятся блоки. недавно так нову восстанавливал, у меня сработало.

Ссылка на комментарий
Поделиться на другие сайты

А как замутить красивый биткоин адрес?Подскажите где прочитать.

Вот здесь http://btcsec.com/bitcoin-address-practice/

Ссылка на комментарий
Поделиться на другие сайты

  • 1 месяц спустя...

Новая версия Bitcoin Core 0.9.2 

 

https://bitcoin.org/bin/0.9.2/https://bitcoin.org/en/download

 

Изменения https://bitcointalk.org/index.php?topic=655359.0

Ссылка на комментарий
Поделиться на другие сайты

  • 1 месяц спустя...

Только сейчас обратил внимание в настройках кошелька биткоин на пункт "spend unconfirmed change" не совсем понял что дает его включение\выключение?

Ссылка на комментарий
Поделиться на другие сайты

  • 2 недели спустя...

Народ, как востановить кошелек?  Остался только файл "валет.дат" изменил его на новом кошельке не помогло...

Переносил кошелек с диска ц, на д. Кошелек начал копризничать, я его снес полностью "шифт делит" и оставил только файл "валет.дат", в заявке на покупку битков кошелек который я копи пастнул "1EF9dzDjkE9......" а тут "14jnCfxVjs...." не чего общего :(

Ссылка на комментарий
Поделиться на другие сайты

Качаешь и ставишь новый кошель, в него пихаешь старый валет.дат и ждешь когда синхронизируется, всё.

Изменено пользователем kamikadze69
Ссылка на комментарий
Поделиться на другие сайты

Для публикации сообщений создайте учётную запись или авторизуйтесь

Вы должны быть пользователем, чтобы оставить комментарий

Создать учетную запись

Зарегистрируйте новую учётную запись в нашем сообществе. Это очень просто!

Регистрация нового пользователя

Войти

Уже есть аккаунт? Войти в систему.

Войти
  • Последние посетители   0 пользователей онлайн

    • Ни одного зарегистрированного пользователя не просматривает данную страницу
  • Similar Topics

    • Курс Bitcoin (только про Bitcoin)

      В данной ветке предлагаю вести обсуждение курса Bitcoin Для желающих безнаказанно оффтопить был создан топик Курсы криптовалют в разделе флейма, там можно уходить в рассуждения сколь угодно далеко от основной темы, так что велком! Также у нас есть ветка по обсуждению "справедливого курса" Bitcoin     Несколько полезных инструментов для отслеживания курса: bitcoin.clarkmoody отображает стакан Mt.Gox и строит в реалтайме японские свечи bitcoinchain сравнение курсов на разных биржах н

      в Биткоин

    • Комиссии Bitcoin

      Попытался собрать воедино информацию по комиссиям Биткоина:   Где посмотреть текущую комиссию Биткоина? Вот утилита для расчета комиссий Биткоина. Ее обсуждение и лог разработки здесь. Кто назначает комиссию в Биткоине? Комиссию назначает пользователь самостоятельно при отправке. Чем больше комиссия- тем выше приоритет у транзакции.   Что такое комиссия в техническом плане? Комиссия в сети Биткоин - это разница между фактически отправленной суммой и раз

      в Биткоин

    • [Top-10 Bitcoin Майнинг пул] [emcd. Mining pool] - FPPS, комиссия 1.5%, без мин. порога на вывод

      Экосистема для майнеров и пользователей криптовалют, в которой можно добывать криптовалюту с низкой комиссией, хранить добытые монеты с выгодой до 12% годовых и экономить на выводе в фиатные валюты внутри одного приложения. Майнинг-пул  Добывай BTC, LTC, DOGE, ETC и другие монеты с высоким хешрейтом и минимальной комиссией 1,5%. Накопительный счёт  Безопасно храни криптовалюту и получай пассивный доход до 12% годовых.  Быстрый вывод  Выводи активы на карту - Visa, Maste

      в Пулы совместного майнинга

    • Coinbase запустит торговлю фьючерсами на Dogecoin, Litecoin и Bitcoin Cash

      Американская криптовалютная биржа Coinbase направила Комиссии по торговле товарными фьючерсами (CFTC) три письма, в котором сообщила о планах запуска фьючерсов на Dogecoin, Litecoin и Bitcoin Cash с 1 апреля. Выбор Dogecoin представители Coinbase объяснили «преодолением пределов мемкоина» и растущей популярностью этой криптовалюты. То есть, по мнению руководства биржи, DOGE давно вышла за пределы «криптовалюты-шутки» и стала одним из основополагающих элементов криптоиндустрии.   Фьюч

      в Новости криптовалют

    • Суд присяжных признал владельца криптомиксера Bitcoin Fog Романа Стерлингова виновным

      Роман Стерлингов, основатель и оператор миксера Bitcoin Fog, был осужден Окружным судом США за отмывание $400 млн в период с 2011 по 2021 годы. 12 марта суд присяжных Окружного суда округа Колумбия вынес обвинительный приговор в отношении владельца криптомиксера Bitcoin Fog Романа Стерлингова. Присяжные согласились с доказательствами обвинения, что Стерлингов владел и управлял миксером Bitcoin Fog с октября 2011 года по апрель 2021 года, а также содействовал отмыванию денег преступников, ст

      в Новости криптовалют

×
×
  • Создать...