(v)
| 2415 | } |
| 2416 | |
| 2417 | function bytesToHexByte(v) { |
| 2418 | return "0x" + (v & 0xff).toString(16).padStart(2, "0").toUpperCase(); |
| 2419 | } |
| 2420 | |
| 2421 | function uint16ToHexWord(v) { |
| 2422 | return "0x" + (v & 0xffff).toString(16).padStart(4, "0").toUpperCase(); |
no outgoing calls
no test coverage detected