(name: String, symbol: String)
| 15 | |
| 16 | impl Contract for Erc20 { |
| 17 | fn construct(name: String, symbol: String) { |
| 18 | println!("name {}, symbol", symbol); |
| 19 | } |
| 20 | |
| 21 | fn mint(account: String, amount: u64) { |
| 22 | println!("account {}, amount", amount); |
nothing calls this directly
no outgoing calls
no test coverage detected