Added support for fees in wallet send

This commit is contained in:
b00lean 2015-07-10 09:56:46 +02:00
parent 0334687db3
commit cc9d024f80
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package com.generalbytes.batm.server.extensions;
import java.math.BigDecimal;
/**
* Created by b00lean on 22.4.15.
*/
public interface IWalletAdvanced extends IWallet{
public String sendCoins(String destinationAddress, BigDecimal amount, BigDecimal fee ,String cryptoCurrency, String description); //returns txid
}