aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_generateblock.py
AgeCommit message (Collapse)Author
2020-08-06refactor: test: use _ variable for unused loop countersSebastian Falbesoner
substitutes "for x in range(N):" by "for _ in range(N):" indicates to the reader that a block is just repeated N times, and that the loop counter is not used in the body
2020-04-16rpc: Document all aliases for second arg of getblockMarcoFalke
2020-04-12rpc: Rename first arg of generateblock RPC to "output"MarcoFalke
2020-03-27Add tests for generateblockAndrew Toth