Skip to content
Merged
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
5 changes: 4 additions & 1 deletion Stellar-transaction.x
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,8 @@ enum SorobanCredentialsType
SOROBAN_CREDENTIALS_ADDRESS = 1
#ifdef CAP_0071
,
SOROBAN_CREDENTIALS_ADDRESS_WITH_DELEGATES = 2
SOROBAN_CREDENTIALS_ADDRESS_V2 = 2,
SOROBAN_CREDENTIALS_ADDRESS_WITH_DELEGATES = 3
Comment thread
dmkozh marked this conversation as resolved.
#endif
};

Expand All @@ -600,6 +601,8 @@ case SOROBAN_CREDENTIALS_SOURCE_ACCOUNT:
case SOROBAN_CREDENTIALS_ADDRESS:
SorobanAddressCredentials address;
#ifdef CAP_0071
case SOROBAN_CREDENTIALS_ADDRESS_V2:
SorobanAddressCredentials addressV2;
Comment thread
dmkozh marked this conversation as resolved.
case SOROBAN_CREDENTIALS_ADDRESS_WITH_DELEGATES:
SorobanAddressCredentialsWithDelegates addressWithDelegates;
#endif
Expand Down
Loading