Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .ci-config/rippled.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ validators.txt
# Devnet amendments as of June 28th, 2023
NegativeUNL
fixRemoveNFTokenAutoTrustLine
NonFungibleTokensV1
CheckCashMakesTrustLine
fixRmSmallIncreasedQOffers
fixSTAmountCanonicalize
Expand Down Expand Up @@ -202,7 +201,7 @@ PermissionedDomains
SingleAssetVault
fixFrozenLPTokenTransfer
fixInvalidTxFlags
PermissionDelegation
PermissionDelegationV1_1
PermissionedDEX
Batch
TokenEscrow
Expand Down
6 changes: 3 additions & 3 deletions tests/integration/transactions/test_delegate_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ async def test_delegation_with_no_permission(self, client):
self.assertEqual(response.status, ResponseStatus.SUCCESS)

# Sending a transaction without a delegate permission results in
# tecNO_DELEGATE_PERMISSION
self.assertEqual(response.result["engine_result"], "tecNO_DELEGATE_PERMISSION")
# terNO_DELEGATE_PERMISSION
self.assertEqual(response.result["engine_result"], "terNO_DELEGATE_PERMISSION")

@test_async_and_sync(globals())
async def test_delegate_set_workflow(self, client):
Expand Down Expand Up @@ -100,7 +100,7 @@ async def test_delegate_set_workflow(self, client):
account_set, bob, client, check_fee=False
)
self.assertEqual(response.status, ResponseStatus.SUCCESS)
self.assertEqual(response.result["engine_result"], "tecNO_DELEGATE_PERMISSION")
self.assertEqual(response.result["engine_result"], "terNO_DELEGATE_PERMISSION")

# test ledger entry
ledger_entry_response = await client.request(
Expand Down