11506 Commits
Author SHA1 Message Date
Earle LoweandGitHub f2cc5dbd94 Update CHANGELOG.md (#16512) 2.1.0 2023-10-05 13:59:18 -05:00
Izumi HoshinoandGitHub 2f41a8cfaa Updated default bladebit version to v3.1.0 (#16531) 2023-10-05 11:15:38 -05:00
Earle LoweandGitHub debeb1b550 Update chiapos to 2.0.3 (#16520) 2023-10-03 20:56:00 -05:00
JeffandGitHub f3c1d15260 Bump chia-blockchain-gui to 2.1.0-rc5 (#16486) 2.1.0-rc5 2023-10-02 14:33:50 -05:00
JeffandGitHub fc4f7f8f06 Bump chia-blockchain-gui to 2.1.0-rc4 (#16444)
Bump chia-blockchain-gui to 642650aab61e132bc14c828140ac6dbd0f92e1d7

* Fix crash when viewing a counterable offer by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2177

**Full Changelog**: https://github.com/Chia-Network/chia-blockchain-gui/compare/2.1.0-rc3...2.1.0-rc4
2.1.0-rc4
2023-09-27 21:06:35 -05:00
William AllenandGitHub 2ffd471f99 Fixing TAG_TYPE env for CI (#16442) 2023-09-27 18:26:49 -05:00
Kronus91andGitHub 04fa3b3780 Fix glitch NFT wallet test (#16434)
* Fix nft transfer tests

* Fix pre-commit

* Add wait wallet sync
2023-09-26 19:35:59 -05:00
8b4b2ca869 Update install-gui.sh to use check Node 18 and npm 9 (#16424)
* Update to use node 18 and npm 9

* `$(npm bin)` -> `$(npm prefix)/bin`

* `$(npm bin)` -> `$(npm prefix)/node_modules/.bin`

* Upgraded package-lock version

* `start-gui.sh` now requires npm >= 9

* Reverted `package-lock.json` version for old NodeJS/npm

---------

Co-authored-by: ChiaMineJP <admin@chiamine.jp>
2.1.0-rc3
2023-09-26 17:30:43 -05:00
JeffandGitHub 58ad8b8f09 Fix CAT --> CR-CAT wallet conversion (#16423)
* Fix CAT --> CR-CAT wallet conversion

* Placate a grumpy mypy
2023-09-26 11:42:03 -05:00
JeffandGitHub e48649c91a Bump chia-blockchain-gui to ef10761cc0f60d275dbd0895c59729eed081aad1 (#16422)
* Refactor out LogoutButton and match style of other header buttons by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2131
* Cosmetic fixes for the Harvester settings screen by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2139
* Cosmetic fix to the tooltip background color by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2140
* Fixed farm page crash by @ChiaMineJP in https://github.com/Chia-Network/chia-blockchain-gui/pull/2143
* skip_ref_checkout: true for crowdin so we can work on branches other than main by @cmmarslender in https://github.com/Chia-Network/chia-blockchain-gui/pull/2146
* Hide hybrid disk 16G option by @ChiaMineJP in https://github.com/Chia-Network/chia-blockchain-gui/pull/2154
* Added a warning dialog appeared when selecting hybrid 128G mode by @ChiaMineJP in https://github.com/Chia-Network/chia-blockchain-gui/pull/2158
* Emoji hover state fix by @rifeljm in https://github.com/Chia-Network/chia-blockchain-gui/pull/2165
* Fix addVCProofs WalletConnect call by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2166
* expiring offers ui fixes by @lipalong in https://github.com/Chia-Network/chia-blockchain-gui/pull/2167
* Additional emoji picker hover state fix by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2168

**Full Changelog**: https://github.com/Chia-Network/chia-blockchain-gui/compare/2.1.0-rc2...2.1.0-rc3
2023-09-25 23:55:16 -05:00
Matt HauffandGitHub 867b55097e Fix issue with trade failures (#16415) 2023-09-25 20:42:44 -05:00
wjblankeandGitHub 07e2a0b8bb Wallet workaround for python issue 97641 and update anyio for issue 589 (#16408)
* add arvid's fix to wallet as well

* update anyio to 4.0.0
2023-09-25 20:36:44 -05:00
Kyle AltendorfandGitHub ee09892f06 rename chia data add_missing_files -f/--foldername to -d/--directory (#16383) 2023-09-25 19:17:41 -05:00
William AllenandGitHub d298d6b8c6 Update chiapos (#16419) 2023-09-25 19:17:23 -05:00
Arvid NorbergandGitHub fb2a939606 fix typo in PendingTxCache (#16417)
fix typo in PendingTxCache when evicting the last MempoolItem of an assert-height level. add test coverage
2023-09-25 18:29:30 -05:00
xchdata.ioandGitHub d2934682ec Fix chia farm summary aborting early if no local full node present (#16387)
* Fix `chia farm summary` aborting early if no local full node present

Before 2.0, even if no local full node was present, `chia farm summary`
would still show useful information:

	$ chia farm summary
	Farming status: Not available
	Local Harvester
	   1 plots of size: 101.320 GiB on-disk, 101.400 GiBe (effective)
	Plot count for all harvesters: 1
	Total size of plots: 101.320 GiB, 101.400 GiBe (effective)
	Estimated network space: Unknown
	Expected time to win: Unknown
	For details on farmed rewards and fees you should run 'chia start wallet' and 'chia wallet show'

However, since 2.0, that is no longer the case. `chia farm summary`
simply aborts with an exception:

	$ chia farm summary
	Error: Connection error: ClientConnectorError: Cannot connect to host localhost:8555 ssl:<ssl.SSLContext object at 0x7fe0edd533c0> [Connect call failed ('127.0.0.1', 8555)]
	Check if full node rpc is running at 8555
	This is normal if full node is still starting up

This fixes this particular regression which is rather annoying for
farmers farming to a remote node.

Fixes #16164. Related to issue #9615, but that issue is wider in scope.

* Improve exception reporting for `chia farm summary`

With this change, only the exceptions when failing to connect to a local
full node and/or wallet are suppressed, as these cases are already
properly handled by adjusted command output. Any other exception is
printed to stderr.
2023-09-25 16:35:55 -05:00
Arvid NorbergandGitHub 79f4a999fb bump chia_rs to include bugfix for new AGG_SIG_* conditions in mempool mode (#16409)
* bump chia_rs to include bugfix for new AGG_SIG_* conditions in mempool mode

* add tests for AGG_SIG_* conditions cost and extra-args
2023-09-25 15:33:34 -05:00
Kyle AltendorfandGitHub d1b10c6abe pin astroid==2.15.6 for pylint false positives (#16414)
https://github.com/pylint-dev/pylint/issues/9069
2023-09-25 11:48:01 -05:00
Matt HauffandGitHub e120ec4e56 Increase trade test timeouts (#16394)
Increase TradeTest timeouts
2023-09-22 14:27:55 -05:00
Kyle AltendorfandGitHub bbd57321fa add clean-workspace step for package artifact tests (#16380) 2023-09-20 15:09:24 -05:00
Kyle AltendorfandGitHub 519214ab28 Update build-linux-installer-rpm.yml (#16375) 2023-09-20 10:04:57 -05:00
Kyle AltendorfandGitHub 91d94df63a run chia version from packaging artifacts (#16374) 2023-09-20 08:41:32 -05:00
Chris MarslenderandGitHub 959dc2ac52 RPM: Change the --depends to a Recommends: tag on the specific compat package (#16358) 2.1.0-rc2 2023-09-18 21:08:31 -05:00
JeffandGitHub ccf0002b72 Bump chia-blockchain-gui to 2.1.0-rc2 (#16365)
Fixed an issue where expected average passed filter count was wrong by @ChiaMineJP in https://github.com/Chia-Network/chia-blockchain-gui/pull/2087
Fix chia_data_layer_http service startup. Use `noWait` to skip waiting for ping responses that will never arrive by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2113
fix localization issue by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2114
Fixed an issue where status indicators always show `NOT RUNNING` by @ChiaMineJP in https://github.com/Chia-Network/chia-blockchain-gui/pull/2117
fixes for expiring offers by @lipalong in https://github.com/Chia-Network/chia-blockchain-gui/pull/2121
Fix offer creation to prevent setting max_time to 0 (use null instead) by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2129
2023-09-18 20:29:07 -05:00
Kyle AltendorfandGitHub 056f20dc3c chiabip158==1.3 (#16356) 2023-09-18 18:01:44 -05:00
Arvid NorbergandGitHub 13e237c250 bump data layer benchmark timeout for batch insert from 17 -> 18 seconds (#16341) 2023-09-18 14:55:47 -05:00
Matt HauffandGitHub 018e812d85 Add extra_conditions to special offer making (#16340) 2023-09-15 21:00:57 -05:00
JeffandGitHub 8fc01a2553 Bump chia-blockchain-gui to 52d536c7da867a5dcefd238b18248c61a4337a5c (#16329)
Fixed typo by @ChiaMineJP in https://github.com/Chia-Network/chia-blockchain-gui/pull/1915
fix incorrect paths by @nirajpathak13 in https://github.com/Chia-Network/chia-blockchain-gui/pull/1922
fixes in gui by @lipalong in https://github.com/Chia-Network/chia-blockchain-gui/pull/1931
fixed auto login by @seeden in https://github.com/Chia-Network/chia-blockchain-gui/pull/1982
Fix crash when populating keys that lack an emoji/theme entry by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2024
Fix address entry when entered directly instead of using the selection by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2037
fixes by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2052
fix for the crash when clicking on the Plots tab by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2057
Fixed effective plot size values by @ChiaMineJP in https://github.com/Chia-Network/chia-blockchain-gui/pull/2062
fix by @paninaro in https://github.com/Chia-Network/chia-blockchain-gui/pull/2082
2.1.0-rc1
2023-09-14 10:17:17 -05:00
Matt HauffandGitHub b6dae184a1 Add valid_times to Offer object (#16255) 2023-09-13 20:07:18 -05:00
JeffandGitHub ab07de72d5 Bump chia-blockchain-gui to 254dcfaf034a49567ac99b17ff74d061883e55d2 (#16211) 2023-09-13 15:34:24 -05:00
Arvid NorbergandGitHub 2d7cd8428b remove CHIP-13 and SOFT_FORK4 (#16320) 2023-09-13 14:51:12 -05:00
Kyle AltendorfandGitHub 06c7382cd4 send --fix-ssl-permissions to stderr (#15972) 2023-09-13 14:15:11 -05:00
Kyle AltendorfandGitHub e6663c05d8 remove const_dict= parameter from BlockTools() (#16322) 2023-09-13 14:13:47 -05:00
Kyle AltendorfandGitHub e9ac7ea610 apply uint*() more (#16287) 2023-09-13 10:48:06 -05:00
Kyle AltendorfandGitHub ebcf74d9d9 improve dataclasses.replace() usage to improve hint checking (#16286) 2023-09-13 10:25:13 -05:00
Kyle AltendorfandGitHub 0934e3dc4e core.server test_loop() failures (#16207) 2023-09-13 10:17:43 -05:00
dustinfaceandGitHub bc83010c92 wallet: Drop unused methods in wallet_sync_utils.py (#16277) 2023-09-13 08:27:14 -05:00
dustinfaceandGitHub 2a1e3ae2fc full_node: Move wallet updates into a separate task (#16238) 2023-09-13 08:26:47 -05:00
Matt HauffandGitHub d7e9090122 Add ergonomic timelock parsing to RPCs (#16054) 2023-09-12 14:16:48 -05:00
Izumi HoshinoandGitHub 4278760924 Bladebit Hybrid disk mode (#16208) 2023-09-12 13:54:04 -05:00
Matt HauffandGitHub efff83e7be Add timelock information to Trades and Transactions (#15915) 2023-09-12 11:28:01 -05:00
Arvid NorbergandGitHub fd51693ba0 run_block_generator2() (#16241) 2023-09-12 11:27:37 -05:00
Matt HauffandGitHub 13eaf1fd10 Refactor simulator setups from async generators to context managers (#16126) 2023-09-12 10:01:28 -05:00
dustinfaceandGitHub e9b5937dce wallet: Drop is_peer_synced / More cache usage (#16261) 2023-09-11 17:52:43 -05:00
Matt HauffandGitHub c48beff81e Fix test_dusted_wallet flakiness (#16288) 2023-09-11 15:44:14 -05:00
Geoff WalmsleyandGitHub 315d79e5b7 max_coin_amount should default to None in walllet send command (#16303) 2023-09-11 15:43:50 -05:00
Geoff WalmsleyandGitHub a6b2bd2ea9 add fee for cat creation (#16285) 2023-09-11 15:43:39 -05:00
b81772861f Configure number of stored full files in DL. (#16135)
Co-authored-by: Kyle Altendorf <sda@fstab.net>
2023-09-11 13:41:45 -05:00
JeffandGitHub b4dd2a4292 Rename USDS --> USDSC (#16295) 2023-09-11 12:54:18 -05:00
Kyle AltendorfandGitHub a2f3232ec2 move using_temp_file_keyring() decorator to test fixtures (#16296) 2023-09-11 12:54:03 -05:00