3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-07 06:44:16 +00:00

Minor formatting change.

This commit is contained in:
Mike Hearn 2011-08-05 14:02:09 +00:00
parent dafb806f05
commit a598132514

View File

@ -458,14 +458,12 @@ public class Wallet implements Serializable {
* @return The {@link Transaction} that was created or null if there was insufficient balance to send the coins.
* @throws IOException if there was a problem broadcasting the transaction
*/
public synchronized Transaction sendCoins(Peer peer, Address to, BigInteger nanocoins)
throws IOException {
public synchronized Transaction sendCoins(Peer peer, Address to, BigInteger nanocoins) throws IOException {
Transaction tx = createSend(to, nanocoins);
if (tx == null) // Not enough money! :-(
return null;
peer.broadcastTransaction(tx);
confirmSend(tx);
return tx;
}