mirror of
https://github.com/jwetzell/acn-js.git
synced 2026-08-25 16:18:58 +00:00
rlp header should be hex string
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
export function toHex(bytes: Uint8Array): string{
|
||||
let hex = '';
|
||||
bytes.forEach((byte)=>{
|
||||
hex += byte.toString(16).padStart(2,'0')
|
||||
})
|
||||
return hex;
|
||||
}
|
||||
Reference in New Issue
Block a user