Attention is currently required from: kirr.
Patch set 2:Code-Review +2
1 comment:
File src/target/trx_toolkit/data_msg.py:
Patch Set #2, Line 31: struct.unpack('b', struct.pack('B', x))[0]
Alternatively, we could use `int.to_bytes()` / `int.from_bytes()` API here:
```
return int.from_bytes(x.to_bytes(1), signed=True)
```
No idea if it's better or worse in terms of performance though.
To view, visit change 39536. To unsubscribe, or for help writing mail filters, visit settings.