You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are several API fields that have been deprecated for a very long time. We should remove them as part of the Protocol 22 release in which we will change to the protocol-specific versioning scheme (i.e. horizon-v22.0.0).
// Action needed in release: horizon-v3.0.0: deprecated field
Amountstring`json:"amount"`
In /transactions/:id (or any paginating variant), the valid_before and valid_after fields, because users should instead check the transaction's preconditions which can have way more than time bounds:
* Update .gitignore to ignore bucket-cache/ at any level
* clean up all occurences of Amount and NumAccounts (#5438)
* Cleanup validAfter and validBefore
* Remove unused fn
* Update fixture
* SQL to drop columns for protocol 22 release
* Remove amount and num_accounts from ExpAssetStats table and test fixtures
* Remoce extra space in sql migration file. Generate bindata.go with gogenerate.sh
* Update code to show only authorized accounts and balances in ticker service
* Fix tests in ticker
* Updated CHANGELOG.md to include breaking changes
Epic: #5433
There are several API fields that have been deprecated for a very long time. We should remove them as part of the Protocol 22 release in which we will change to the protocol-specific versioning scheme (i.e.
horizon-v22.0.0
).The following API fields are deprecated:
/assets
, thenum_accounts
andamount
fields:go/protocols/horizon/main.go
Lines 180 to 187 in dfabe31
/transactions/:id
(or any paginating variant), thevalid_before
andvalid_after
fields, because users should instead check the transaction's preconditions which can have way more than time bounds:go/protocols/horizon/main.go
Lines 536 to 538 in dfabe31
The text was updated successfully, but these errors were encountered: