Search content
Sort by

Showing 6 of 6 results by mim45
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin Core 0.21.1 Released
by
mim45
on 11/07/2021, 17:22:56 UTC
0.21.1 Release Notes

Bitcoin Core version 0.21.1 is now available from:

https://bitcoincore.org/bin/bitcoin-core-0.21.1/

This minor release includes various bug fixes and performance
improvements, as well as updated translations.

Please report bugs using the issue tracker at GitHub:

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

To receive security and update notifications, please subscribe to:

https://bitcoincore.org/en/list/announcements/join/

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 in some cases), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac)
or bitcoind/bitcoin-qt (on Linux).

Upgrading directly from a version of Bitcoin Core that has reached its EOL is
possible, but it might take some time if the data directory needs to be migrated. Old
wallet versions of Bitcoin Core are generally supported.

Compatibility

Bitcoin Core is supported and extensively tested on operating systems
using the Linux kernel, macOS 10.12+, and Windows 7 and newer.  Bitcoin
Core should also work on most other Unix-like systems but is not as
frequently tested on them.  It is not recommended to use Bitcoin Core on
unsupported systems.

From Bitcoin Core 0.20.0 onwards, macOS versions earlier than 10.12 are no
longer supported. Additionally, Bitcoin Core does not yet change appearance
when macOS "dark mode" is activated.

Notable changes

Taproot Soft Fork

Included in this release are the mainnet and testnet activation
parameters for the taproot soft fork (BIP341) which also adds support
for schnorr signatures (BIP340) and tapscript (BIP342).

If activated, these improvements will allow users of single-signature
scripts, multisignature scripts, and complex contracts to all use
identical-appearing commitments that enhance their privacy and the
fungibility of all bitcoins. Spenders will enjoy lower fees and the
ability to resolve many multisig scripts and complex contracts with the
same efficiency, low fees, and large anonymity set as single-sig users.
Taproot and schnorr also include efficiency improvements for full nodes
such as the ability to batch signature verification.  Together, the
improvements lay the groundwork for future potential
upgrades that may improve efficiency, privacy, and fungibility further.

Activation for taproot is being managed using a variation of BIP9
versionbits called Speedy Trial (described in BIP341). Taproot's
versionbit is bit 2, and nodes will begin tracking which blocks signal
support for taproot at the beginning of the first retarget period after
taproot’s start date of 24 April 2021.  If 90% of blocks within a
2,016-block retarget period (about two weeks) signal support for taproot
prior to the first retarget period beginning after the time of 11 August
2021, the soft fork will be locked in, and taproot will then be active
as of block 709632 (expected in early or mid November).

Should taproot not be locked in via Speedy Trial activation, it is
expected that a follow-up activation mechanism will be deployed, with
changes to address the reasons the Speedy Trial method failed.

This release includes the ability to pay taproot addresses, although
payments to such addresses are not secure until taproot activates.
It also includes the ability to relay and mine taproot transactions
after activation.  Beyond those two basic capabilities, this release
does not include any code that allows anyone to directly use taproot.
The addition of taproot-related features to Bitcoin Core's wallet is
expected in later releases once taproot activation is assured.

All users, businesses, and miners are encouraged to upgrade to this
release (or a subsequent compatible release) unless they object to
activation of taproot.  If taproot is locked in, then upgrading before
block 709632 is highly recommended to help enforce taproot's new rules
and to avoid the unlikely case of seeing falsely confirmed transactions.

Miners who want to activate Taproot should preferably use this release
to control their signaling.  The getblocktemplate RPC results will
automatically be updated to signal once the appropriate start has been
reached and continue signaling until the timeout occurs or taproot
activates.  Alternatively, miners may manually start signaling on bit 2
at any time; if taproot activates, they will need to ensure they update
their nodes before block 709632 or non-upgraded nodes could cause them to mine on
an invalid chain.  See the versionbits
FAQ
for
details.

For more information about taproot, please see the following resources:

Updated RPCs
  • Due to BIP 350
      being implemented, behavior for all RPCs that accept addresses is changed when
      a native witness version 1 (or higher) is passed. These now require a Bech32m
      encoding instead of a Bech32 one, and Bech32m encoding will be used for such
      addresses in RPC output as well. No version 1 addresses should be created
      for mainnet until consensus rules are adopted that give them meaning
      (e.g. through BIP 341).
      Once that happens, Bech32m is expected to be used for them, so this shouldn't
      affect any production systems, but may be observed on other networks where such
      addresses already have meaning (like signet).

0.21.1 change log

Consensus
  • #21377 Speedy trial support for versionbits (ajtowns)
  • #21686 Speedy trial activation parameters for Taproot (achow101)

P2P protocol and network code
  • #20852 allow CSubNet of non-IP networks (vasild)
  • #21043 Avoid UBSan warning in ProcessMessage(…) (practicalswift)

Wallet
  • #21166 Introduce DeferredSignatureChecker and have SignatureExtractorClass subclass it (achow101)
  • #21083 Avoid requesting fee rates multiple times during coin selection (achow101)

RPC and other APIs
  • #21201 Disallow sendtoaddress and sendmany when private keys disabled (achow101)

Build system
  • #21486 link against -lsocket if required for *ifaddrs (fanquake)
  • #20983 Fix MSVC build after gui#176 (hebasto)

Tests and QA
  • #21380 Add fuzzing harness for versionbits (ajtowns)
  • #20812 fuzz: Bump FuzzedDataProvider.h (MarcoFalke)
  • #20740 fuzz: Update FuzzedDataProvider.h from upstream (LLVM) (practicalswift)
  • #21446 Update vcpkg checkout commit (sipsorcery)
  • #21397 fuzz: Bump FuzzedDataProvider.h (MarcoFalke)
  • #21081 Fix the unreachable code at feature_taproot (brunoerg)
  • #20562 Test that a fully signed tx given to signrawtx is unchanged (achow101)
  • #21571 Make sure non-IP peers get discouraged and disconnected (vasild, MarcoFalke)
  • #21489 fuzz: cleanups for versionbits fuzzer (ajtowns)

Miscellaneous
  • #20861 BIP 350: Implement Bech32m and use it for v1+ segwit addresses (sipa)

Documentation
  • #21384 add signet to bitcoin.conf documentation (jonatack)
  • #21342 Remove outdated comment (hebasto)

Credits

Thanks to everyone who directly contributed to this release:
  • Aaron Clauson
  • Andrew Chow
  • Anthony Towns
  • Bruno Garcia
  • Fabian Jahr
  • fanquake
  • Hennadii Stepanov
  • Jon Atack
  • Luke Dashjr
  • MarcoFalke
  • Pieter Wuille
  • practicalswift
  • randymcmillan
  • Sjors Provoost
  • Vasil Dimov
  • W. J. van der Laan

As well as to everyone that helped with translations on
Transifex.



Code:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

28264751c982d30b9330e6c1475ddb9ed28be6a2601e8a5f33b6ba49a3d9f5f2  bitcoin-0.21.1-aarch64-linux-gnu.tar.gz
3a92e312ffd3ca92579d46ec52e3dcb1b09bbdd11fe7c6a735e8546c7d9975e0  bitcoin-0.21.1-arm-linux-gnueabihf.tar.gz
1ea5cedb64318e9868a66d3ab65de14516f9ada53143e460d50af428b5aec3c7  bitcoin-0.21.1-osx64.tar.gz
2df15131cd18fd1941adc26f014012b437ccaadab39f1f5dc10282a68e8f9923  bitcoin-0.21.1-osx.dmg
259d74f13271dc51eb4db4b733fb1589038ff7819e849d2351e899f67de218c5  bitcoin-0.21.1-riscv64-linux-gnu.tar.gz
caff23449220cf45753f312cefede53a9eac64000bb300797916526236b6a1e0  bitcoin-0.21.1.tar.gz
afdd0f1717a74af01b88631d17a2f29f89d21ca2e3be0fec0678e7a1e20712d5  bitcoin-0.21.1-win64-setup-unsigned.exe
94c80f90184cdc7e7e75988a55b38384de262336abd80b1b30121c6e965dc74e  bitcoin-0.21.1-win64.zip
366eb44a7a0aa5bd342deea215ec19a184a11f2ca22220304ebb20b9c8917e2b  bitcoin-0.21.1-x86_64-linux-gnu.tar.gz
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJgja0mAAoJEJDIAZ42wulkV+IQAI84JuMhIs5muAqTX6G/sxPV
sJ2RJ5aansLEcnFQrrmUNqXpGRB+yiCwlUg9cXLV6zKQkdmDnSuqhTGbivFDLoO3
WeEcQdvkUEodHOk9NK8AVB8NGRK2lkevij4OK0jUUdSVg31dJsygs09TKQGmfXKJ
QnGR7Oz4h/BExrzYfC6PY3AYVJXOkVR86hb2w4r33xNy9DMkvxqbX+B9v1fvqO/V
arcPriVKd0YiEi5nIV5/4ghkHGPAakXzd49DgxW8BVXXqPILBS/MatjgQ5BWJWpK
p4B6V0FYJ2ZpvaTWNBOllUTNRq7YACcKSAEyW3cD9aNPz4o8mb3O7LMr+qb2z0+4
KZuubmOT3sJD37nsZ7DfmERQ7hFYHdlqvthCEQQyglasEZrsLnuCJQNGOSAT+ixM
8jPf3XFDNWm3QFS5icAmykzOWSV4Z0WcQfDjIRbcoXR09N5PgYavhSiwPqpfQ94/
q2igiMmIPH8rlRySc9fKfpYomkWP4W1vfm/wIeSrNm2oNeedL4/4zcv4v6mmnQhO
+i1Npk1TY9+pMAh5xrjUxw3W1QgpVxttIlRmKw6StpVB2Lxl+bGAXp5N7hA8znWX
3AHSDYcdIVEpjvAWGpNPspsyrDv42zElgR8PqS462d/Go6HHhIqd+wHoRIEJTfXM
m6bC44Ak09Ayxu4IxxBw
=5612
-----END PGP SIGNATURE-----



Note that for this release, due to issues with acquiring a Windows code signing certificate, the Windows installer is not code signed. This means that there will be additional warnings when attempting to run the Windows installer.
Post
Topic
Board Bitcoin Discussion
Re: Who to Trust, Fiat Banks or BTC?
by
mim45
on 11/07/2021, 17:10:02 UTC
I believe both fiat and btc are equally important in my life but if you want to save in large quantities I am more confident in btc because btc is a very important asset for the future if I only save fiat in the bank then the amount of fiat I save does not increase and I can not make it as an asset for the future.
I still need a bank for my various needs so I also choose both...

long-term savings in the bank is just a waste of time because the money we save, the value will be the same as when depositing it. but if you save in Bitcoin then the possibility of a profit of 5x-7x from the initial savings is very large.
it's true that in our current era we still need banks for our needs but maybe in the future we will no longer need banks unless banks provide coin services. In the future we will shop using coins so fiat is no longer needed or fiat may become extinct, then the transaction will be replaced with coins or gold, what do you think if it really happened?
Post
Topic
Board Development & Technical Discussion
Re: The Lightning Network FAQ
by
mim45
on 11/07/2021, 17:03:47 UTC
nice one - do you run by any chance behind tor and could try to connect to my node?
Code:
lightning-cli connect 025b5150c66f3ea41367829f6e4639c772fe4c7939b71933802233493e6e972a8e
Yesterday, I asked darkv0rt3x to try connecting to your node and it worked.

awesome thank you guys - do you know, is he only behind tor?

Another dual-funded channel here! Smiley
As you can all see, it's not that difficult. Who will be the third bitcointalk member to open a dual-funded channel with me? Cool

If any of you were thinking about setting up a Lightning node, now might be the right time. Transaction fees have been extremely low for the past few days.

i was just thinking we could also do triangles (or some more obscene geometric formations) in the future - or are they absolete with dual-funded channels?
Post
Topic
Board Trading Discussion
Re: Cryptocurrency Market Manipulation Logic?
by
mim45
on 11/07/2021, 16:51:53 UTC
Greeting BT Users,

As I am involved in the crypto world for the past 3-5 years and closely watching BTC when its price was around $400 - $700. When the BTC first pumped in 2017/2018 than it creates chaos in the whole world and more and more users are attracted because of the profit they see, but when the price suddenly down and BTC dumped to $5000 from $20k then a lot of new as well as experience users lost their money and also trust from Cryptocurrency.

Recently BTC again pumped and the price reached $60k and was predicted to touch the target of $100k but again the BTC price dumped around $35k - $38k. From all this pump and dumped I did not yet UNDERSTAND that why and how this happens and the difference is huge. BTC is considered the king of the crypto world and it causes the price Pump and Dumped of all the coins. Also Crypto market is untrustable as any person having a status/huge bank balance can easily manipulate the market as Elon Musk did.

Any expert can explain the reason behind those huge pump and dumped of BTC?
Its not easy as you think since the total marketcap of bitcoin even crossed 1 Trillion if I am not wrong so to manipulate the price of bitcoin the user who wants to manipulate should sell or buy few thousands of Bitcoin to create the price change.

The price manipulation is not only exist in cryptocurrencies, even in stocks the company itself boost their stock values with fake expenses and profit making records to create hype and sell them for profits.
Manipulation would really be there neither you do engage with cryptocurrency market or with stocks or forex markets which turns out to be a casual thing to happen since there would be people/institutions who would be always on the top of the game or always ahead due to financial capacity.

It might not be proven out specially on a decentralized market but its quite evident and bit obvious anytime there would be some pump and dump in price and we cant determine on whats the actual
reason on the said price movement.

The only thing we can do is to speculate and presume out things in the end but basing on the extent of possible price manipulation then it is something not an easy thing
since Bitcoin market is already getting huge.
Post
Topic
Board Trading Discussion
Re: holding is not an easy thing
by
mim45
on 11/07/2021, 16:38:29 UTC
When it involves holding lots a decipline and self restrictions comes into play because certainly challenges would come up tempting the average investor to do some withdrawal and sort them out and it comes up often and on until it completely wipes out the entire coin available. It's always good to have a steady source of income if you mist hold a coin
Post
Topic
Board Mining
Re: USA MINING HOSTING FARM Recommendations needed.
by
mim45
on 11/07/2021, 16:19:35 UTC
We have currently acquired 40 x S19 PRO 110TH AntMiner and would like to see if we can get some
recommendation to reliable and trustworthy USA based Mining Hosting Service.

If there is a reliable list, it would really be helpful , as we are trying to expand with a reliable partner
in the years to come.

Thank you.



I think there is N. American Hosting Facility that is Currently accepting applications on a first-come, first-served basis.
and one is on Colorado Hosting Facility