Document chainid and selfbalance.

This commit is contained in:
chriseth
2019-09-19 15:35:37 +02:00
parent 5a950908b6
commit bfc8fd23ac
4 changed files with 37 additions and 2 deletions
@@ -0,0 +1,15 @@
contract C {
function f() pure external {
assembly {
pop(chainid())
}
}
function g() view external {
assembly {
pop(selfbalance())
}
}
}
// ====
// EVMVersion: >=istanbul
// ----