| 1060 | } |
| 1061 | |
| 1062 | block::StdAddress BaseRunner::generate_proxy_sc_address(td::Bits256 proxy_public_key, |
| 1063 | const block::StdAddress &proxy_owner_address, |
| 1064 | std::shared_ptr<RunnerConfig> config) { |
| 1065 | return ProxyContract(proxy_owner_address, proxy_public_key, nullptr, this, config).address(); |
| 1066 | } |
| 1067 | |
| 1068 | td::Ref<vm::Cell> BaseRunner::generate_sc_init_data(td::Ref<vm::Cell> code, td::Ref<vm::Cell> data) { |
| 1069 | vm::CellBuilder cb; |
nothing calls this directly
no test coverage detected