This commit is contained in:
GME_PRO 2018-07-28 09:57:49 +02:00
parent 2d9ed1d1f8
commit d74218fb29

View file

@ -45,11 +45,13 @@ public class TransactionActivity extends AppCompatActivity {
public void sendTransaction(){
String adD = addressDestination.getText().toString();
BigInteger amt = new BigInteger(amount.getText().toString());
/*
if(AccessBlockchain.sendTransationTo(address, adD, amt)){
Toast.makeText(this, "OK.", Toast.LENGTH_SHORT).show();
}
//Toast.makeText(this, "Coming soon", Toast.LENGTH_SHORT).show();
*/
String message = "Comming soon, addressDestination "+adD+" Amount : "+amt.toString();
Toast.makeText(this, message, Toast.LENGTH_SHORT).show();
}
}