Skip to content

Commit

Permalink
BATM-6741 Rename IWalletContext to IIdentityWalletEvaluationRequest (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
filipocelka authored Dec 11, 2024
1 parent eb910e6 commit 5f65656
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* This class holds basic information required to identify a wallet.
*/
public interface IWalletContext {
public interface IIdentityWalletEvaluationRequest {

/**
* Get the public id of the identity that the wallet belongs to (if any.)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public interface IWalletTypeEvaluationProvider {

/**
* Attempt to evaluate the type of wallet based on the provided {@link IWalletContext}.
* Attempt to evaluate the type of wallet based on the provided {@link IIdentityWalletEvaluationRequest}.
* <p>
* This method should either return {@link WalletTypeEvaluationResult#evaluated(CryptoWalletType, boolean)},
* with the respective {@link CryptoWalletType} if the wallet was successfully evaluated.
Expand All @@ -36,6 +36,6 @@ public interface IWalletTypeEvaluationProvider {
* @param walletContext The context containing information needed to identify the wallet type.
* @return A {@link WalletTypeEvaluationResult} indicating success with the wallet type, or failure if not evaluated.
*/
WalletTypeEvaluationResult evaluateWalletType(IWalletContext walletContext);
WalletTypeEvaluationResult evaluateWalletType(IIdentityWalletEvaluationRequest walletContext);

}

0 comments on commit 5f65656

Please sign in to comment.