aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_generateblock.py
AgeCommit message (Collapse)Author
2021-03-23rpc: deprecate `addresses` and `reqSigs` from rpc outputsMichael Dietz
1) add a new sane "address" field (for outputs that have an identifiable address, which doesn't include bare multisig) 2) with -deprecatedrpc: leave "reqSigs" and "addresses" intact (with all weird/wrong behavior they have now) 3) without -deprecatedrpc: drop "reqSigs" and "addresses" entirely, always.
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