fix: don't prefix base58 since encoder already does it

This commit is contained in:
Derrick Hammer 2023-09-09 15:30:44 -04:00
parent c654a18159
commit 17151d25d0
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ export default abstract class Multibase {
} }
toBase58(): string { toBase58(): string {
return `z${base58btc.encode(this.toBytes())}`; return base58btc.encode(this.toBytes());
} }
toString(): string { toString(): string {