File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 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)
105105 /// <summary>
106106 /// Claim a given amount of currency for compatible drop contracts
107107 /// </summary>
108- public async Task < TransactionResult [ ] > Claim ( string amount )
108+ public async Task < TransactionResult > Claim ( string amount )
109109 {
110- return await Bridge . InvokeRoute < TransactionResult [ ] > ( getRoute ( "claim" ) , Utils . ToJsonStringArray ( amount ) ) ;
110+ return await Bridge . InvokeRoute < TransactionResult > ( getRoute ( "claim" ) , Utils . ToJsonStringArray ( amount ) ) ;
111111 }
112112
113113 /// <summary>
114114 /// Claim a given amount of currency to a given destination wallet for compatible drop contracts
115115 /// </summary>
116- public async Task < TransactionResult [ ] > ClaimTo ( string address , int amount )
116+ public async Task < TransactionResult > ClaimTo ( string address , int amount )
117117 {
118- return await Bridge . InvokeRoute < TransactionResult [ ] > ( getRoute ( "claimTo" ) , Utils . ToJsonStringArray ( address , amount ) ) ;
118+ return await Bridge . InvokeRoute < TransactionResult > ( getRoute ( "claimTo" ) , Utils . ToJsonStringArray ( address , amount ) ) ;
119119 }
120120
121121 /// <summary>
You can’t perform that action at this time.
0 commit comments