blocto / solana-go-sdk

Solana Golang SDK
https://blocto.github.io/solana-go-sdk/
MIT License
373 stars 96 forks source link

GetBlock returns error signatures #39

Closed keyflux closed 2 years ago

keyflux commented 2 years ago

When used client->GetBlock to Block info, the signatures is []byte but not string.Why?

yihau commented 2 years ago

you can use base58 encode to retrieve the signatures which you saw on explorer. []byte is the real type we transport

keyflux commented 2 years ago

Thank you, I got it.