jackyxie
jackyxie
solution: [HttpProvider.php:L174](https://github.com/iexbase/tron-api/blob/master/src/Provider/HttpProvider.php#L174) ``` $decodedBody = json_decode($stream->getContents(),true); //changed to below: $stream_content_uft8 = mb_convert_encoding($stream->getContents(), 'utf8', 'utf8'); $decodedBody = json_decode($stream_content_uft8,true); ```
fix package see here: https://github.com/jackyxie/tron-api
> I have this same problem. The above solution did not fix it. @aralsoft which blocknumber did you get in trouble?
> > > I have this same problem. The above solution did not fix it. > > > > > > @aralsoft which blocknumber did you get in trouble? >...
Any update to supported guzzle 7?
> o thanks, I have modified to supported guzzle7 myself.