File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
csharp/IotaWalletNet/IotaWalletNet.Application Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,8 @@ public async Task<SendAmountResponse> SendAmountAsync(List<AddressWithAmount> ad
180180
181181 public SendAmountBuilder SendAmountUsingBuilder ( ) => new SendAmountBuilder ( _mediator , this , Username ) ;
182182
183+ public SendMicroAmountBuilder SendMicroAmountUsingBuilder ( ) => new SendMicroAmountBuilder ( _mediator , this , Username ) ;
184+
183185 public async Task < SyncAccountResponse > SyncAccountAsync ( )
184186 {
185187 return await _mediator . Send ( new SyncAccountCommand ( this , Username ) ) ;
Original file line number Diff line number Diff line change @@ -68,5 +68,6 @@ public interface IAccount : IRustBridgeCommunicator
6868 Task < DestroyFoundryResponse > DestroyFoundryAsync ( string foundryId ) ;
6969 SendAmountBuilder SendAmountUsingBuilder ( ) ;
7070 Task < SendMicroAmountResponse > SendMicroAmountAsync ( List < AddressWithMicroAmount > addressWithMicroAmounts , TaggedDataPayload ? taggedDataPayload = null ) ;
71+ SendMicroAmountBuilder SendMicroAmountUsingBuilder ( ) ;
7172 }
7273}
You can’t perform that action at this time.
0 commit comments