| 13 | #include <blocksci/chain/block.hpp> |
| 14 | |
| 15 | void addProxyFunctionsCore(pybind11::module &m, pybind11::module &pm) { |
| 16 | using namespace blocksci; |
| 17 | |
| 18 | addProxyFunctions<Block>(m, pm); |
| 19 | addProxyFunctions<Transaction>(m, pm); |
| 20 | addProxyFunctions<Input>(m, pm); |
| 21 | addProxyFunctions<Output>(m, pm); |
| 22 | addProxyFunctions<AnyScript>(m, pm); |
| 23 | addProxyFunctions<EquivAddress>(m, pm); |
| 24 | addProxyFunctions<Cluster>(m, pm); |
| 25 | addProxyFunctions<TaggedCluster>(m, pm); |
| 26 | addProxyFunctions<TaggedAddress>(m, pm); |
| 27 | } |
no outgoing calls
no test coverage detected