Don't require ethereum address verification if instance connected to Monero blockchain
This commit is contained in:
parent
10895e6830
commit
48336803fb
1 changed files with 0 additions and 2 deletions
|
@ -450,7 +450,6 @@ function canManageSubscriptions(): boolean {
|
||||||
return (
|
return (
|
||||||
Boolean(blockchain?.features.subscriptions) &&
|
Boolean(blockchain?.features.subscriptions) &&
|
||||||
profile !== null &&
|
profile !== null &&
|
||||||
profile.getVerifiedEthereumAddress() !== null &&
|
|
||||||
isCurrentUser()
|
isCurrentUser()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -460,7 +459,6 @@ function canSubscribe(): boolean {
|
||||||
return (
|
return (
|
||||||
Boolean(blockchain?.features.subscriptions) &&
|
Boolean(blockchain?.features.subscriptions) &&
|
||||||
profile !== null &&
|
profile !== null &&
|
||||||
profile.getVerifiedEthereumAddress() !== null &&
|
|
||||||
profile.getSubscriptionPageLocation() !== null &&
|
profile.getSubscriptionPageLocation() !== null &&
|
||||||
!isCurrentUser()
|
!isCurrentUser()
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue