[Ceres] Allow arbitrary sized message in Crypto.verify_sig #972

Merged
zxq9 merged 2 commits from arbitrary_sized_signed_message into ceres 2023-08-24 23:14:40 +09:00
Showing only changes of commit b60ecbd5bf - Show all commits

View File

@ -57,6 +57,12 @@ Address.to_str(a : address) : string
Base58 encoded string Base58 encoded string
#### to_bytes
```
Address.to_bytes(a : address) : bytes(32)
```
The binary representation of the address.
#### is_contract #### is_contract
``` ```
@ -564,14 +570,6 @@ Chain.block_height : int"
The height of the current block (i.e. the block in which the current call will be included). The height of the current block (i.e. the block in which the current call will be included).
#### to_bytes
```
Address.to_bytes(a : address) : bytes(32)
```
The binary representation of the address.
##### bytecode_hash ##### bytecode_hash
``` ```
Chain.bytecode_hash : 'c => option(hash) Chain.bytecode_hash : 'c => option(hash)