Add account address lookup table

This commit is contained in:
Justin Starry
2020-03-31 21:58:48 +08:00
committed by Michael Vines
parent 1d7dbe859a
commit 5bdeeda569
5 changed files with 395 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ function TransactionsCard() {
try {
const length = bs58.decode(signature).length;
if (length > 64) {
setError("Signature is too short");
setError("Signature is too long");
return;
} else if (length < 64) {
setError("Signature is too short");