diff --git a/src/common/components/transfer/index.tsx b/src/common/components/transfer/index.tsx index 488cc16f019..343b2990c61 100644 --- a/src/common/components/transfer/index.tsx +++ b/src/common/components/transfer/index.tsx @@ -224,9 +224,7 @@ export class Transfer extends BaseComponent { const { asset } = this.state; if (exchangeAccounts.includes(to)) { - if (asset !== "HIVE") { - this.stateSet({ exchangeWarning: _t("transfer.invalid-asset") }); - } else if (asset === "HIVE" && !memo) { + if ((asset === "HIVE" || asset === "HBD") && !memo) { this.stateSet({ exchangeWarning: _t("transfer.memo-required") }); } else { this.stateSet({ exchangeWarning: "" });