File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -105,17 +105,17 @@ public async Task<TransactionResult> Burn(string amount)
105
105
/// <summary>
106
106
/// Claim a given amount of currency for compatible drop contracts
107
107
/// </summary>
108
- public async Task < TransactionResult [ ] > Claim ( string amount )
108
+ public async Task < TransactionResult > Claim ( string amount )
109
109
{
110
- return await Bridge . InvokeRoute < TransactionResult [ ] > ( getRoute ( "claim" ) , Utils . ToJsonStringArray ( amount ) ) ;
110
+ return await Bridge . InvokeRoute < TransactionResult > ( getRoute ( "claim" ) , Utils . ToJsonStringArray ( amount ) ) ;
111
111
}
112
112
113
113
/// <summary>
114
114
/// Claim a given amount of currency to a given destination wallet for compatible drop contracts
115
115
/// </summary>
116
- public async Task < TransactionResult [ ] > ClaimTo ( string address , int amount )
116
+ public async Task < TransactionResult > ClaimTo ( string address , int amount )
117
117
{
118
- return await Bridge . InvokeRoute < TransactionResult [ ] > ( getRoute ( "claimTo" ) , Utils . ToJsonStringArray ( address , amount ) ) ;
118
+ return await Bridge . InvokeRoute < TransactionResult > ( getRoute ( "claimTo" ) , Utils . ToJsonStringArray ( address , amount ) ) ;
119
119
}
120
120
121
121
/// <summary>
You can’t perform that action at this time.
0 commit comments