Fix call to undefined Base64 method in Multibase (#39618)

Co-authored-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Shlee
2026-06-26 22:53:20 +09:30
committed by GitHub
parent b4e5b039e0
commit ff2031ed7f

View File

@@ -24,7 +24,7 @@ class Multibase
case string[0]
when 'u'
Base64.decode(string[1...])
Base64.urlsafe_decode64(string[1...])
when 'z'
Base58.base58_to_binary(string[1...], :bitcoin)
else