parent
fdb3070fce
commit
7a4bb7f73a
@ -1,19 +0,0 @@ |
||||
import blacklist from './recipient-blacklist' |
||||
|
||||
/** |
||||
* Checks if a specified account on a specified network is blacklisted |
||||
* @param {number} networkId |
||||
* @param {string} account |
||||
* @throws {Error} if the account is blacklisted on mainnet |
||||
*/ |
||||
export function throwIfAccountIsBlacklisted (networkId, account) { |
||||
const mainnetId = 1 |
||||
if (networkId !== mainnetId) { |
||||
return |
||||
} |
||||
|
||||
const accountToCheck = account.toLowerCase() |
||||
if (blacklist.includes(accountToCheck)) { |
||||
throw new Error('Recipient is a public account') |
||||
} |
||||
} |
@ -0,0 +1,19 @@ |
||||
import blocklist from './recipient-blocklist' |
||||
|
||||
/** |
||||
* Checks if a specified account on a specified network is blocked |
||||
* @param {number} networkId |
||||
* @param {string} account |
||||
* @throws {Error} if the account is blocked on mainnet |
||||
*/ |
||||
export function throwIfAccountIsBlockListed (networkId, account) { |
||||
const mainnetId = 1 |
||||
if (networkId !== mainnetId) { |
||||
return |
||||
} |
||||
|
||||
const accountToCheck = account.toLowerCase() |
||||
if (blocklist.includes(accountToCheck)) { |
||||
throw new Error('Recipient is a public account') |
||||
} |
||||
} |
Loading…
Reference in new issue