(&self)
| 456 | /// @returns {Address} The address of the program |
| 457 | #[wasm_bindgen] |
| 458 | pub fn address(&self) -> Result<Address, String> { |
| 459 | Ok(Address::from(self.0.id().to_address().map_err(|e| e.to_string())?)) |
| 460 | } |
| 461 | |
| 462 | /// Determine equality with another program |
| 463 | /// |
nothing calls this directly
no test coverage detected