Merge pull request #283 from aeternity/GH-3002-blockhash_at_current_height

Document Chain.block_hash at current height
This commit is contained in:
Hans Svensson 2020-10-08 10:48:41 +02:00 committed by GitHub
commit 079b3a45c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -678,7 +678,12 @@ The balance of account `a`.
Chain.block_hash(h : int) : option(bytes(32)) Chain.block_hash(h : int) : option(bytes(32))
``` ```
The hash of the block at height `h`. The hash of the block at height `h`. `h` has to be within 256 blocks from the
current height of the chain or else the function will return `None`.
NOTE: In AEVM and FATE VM version 1 `Chain.block_height` was not considered an
allowed height. From FATE VM version 2 (IRIS) it will return the block hash of
the current generation.
#### block_height #### block_height