-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Remove deprecated request functions (attempt 2) (#581)
* Remove deprecated functions * Fix isort --------- Co-authored-by: Caleb Kniffen <ckniffen@ripple.com>
- Loading branch information
Showing
11 changed files
with
3 additions
and
338 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,16 @@ | ||
"""Methods for interacting with XRPL accounts.""" | ||
from xrpl.account.main import ( | ||
does_account_exist, | ||
get_account_info, | ||
get_account_root, | ||
get_balance, | ||
get_next_valid_seq_number, | ||
) | ||
from xrpl.account.transaction_history import ( | ||
get_account_payment_transactions, | ||
get_account_transactions, | ||
get_latest_transaction, | ||
) | ||
from xrpl.account.transaction_history import get_latest_transaction | ||
|
||
__all__ = [ | ||
"get_next_valid_seq_number", | ||
"get_balance", | ||
"get_account_root", | ||
"get_account_info", | ||
"get_account_payment_transactions", | ||
"get_account_transactions", | ||
"does_account_exist", | ||
"get_latest_transaction", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,16 @@ | ||
"""Async methods for interacting with XRPL accounts.""" | ||
from xrpl.asyncio.account.main import ( | ||
does_account_exist, | ||
get_account_info, | ||
get_account_root, | ||
get_balance, | ||
get_next_valid_seq_number, | ||
) | ||
from xrpl.asyncio.account.transaction_history import ( | ||
get_account_payment_transactions, | ||
get_account_transactions, | ||
get_latest_transaction, | ||
) | ||
from xrpl.asyncio.account.transaction_history import get_latest_transaction | ||
|
||
__all__ = [ | ||
"get_next_valid_seq_number", | ||
"get_balance", | ||
"get_account_root", | ||
"get_account_info", | ||
"get_account_payment_transactions", | ||
"get_account_transactions", | ||
"does_account_exist", | ||
"get_latest_transaction", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.