public IEnumerator Transfer(UnspentEntries unspent, NeoKeys from_key, UInt160 to_address_hash, BigInteger amount, string interop, decimal fee, Action <Transaction, string> callback) { return(Transfer(unspent, from_key, to_address_hash.ToArray(), amount, interop, fee, callback)); }
public IEnumerator Transfer(UnspentEntries unspent, NeoKeys from_key, string to_address, BigInteger amount, string interop, decimal fee, Action <Transaction, string> callback) { return(Transfer(unspent, from_key, to_address.GetScriptHashFromAddress(), amount, interop, fee, callback)); }