Skip to content

generateFunctionCall and generateFunctionCallMultipleOutputsDTO generate code without fromAddress #2

@StefH

Description

@StefH

The following C# code is generated:

public Task<bool> StoreDocumentAsyncCall(byte[] key, string name, string description) {
  var function = GetFunctionStoreDocument();
  return function.CallAsync<bool>(key, name, description);
}

And it would be better if also this code was generated:

public Task<bool> StoreDocumentAsyncCall(string addressFrom, byte[] key, string name, string description, HexBigInteger gas = null, HexBigInteger valueAmount = null) {
  var function = GetFunctionStoreDocument();
  return function.CallAsync<bool>(addressFrom, gas, valueAmount, key, name, description);
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions