backup
This commit is contained in:
parent
2d9ed1d1f8
commit
d74218fb29
|
@ -45,11 +45,13 @@ public class TransactionActivity extends AppCompatActivity {
|
||||||
public void sendTransaction(){
|
public void sendTransaction(){
|
||||||
String adD = addressDestination.getText().toString();
|
String adD = addressDestination.getText().toString();
|
||||||
BigInteger amt = new BigInteger(amount.getText().toString());
|
BigInteger amt = new BigInteger(amount.getText().toString());
|
||||||
|
/*
|
||||||
if(AccessBlockchain.sendTransationTo(address, adD, amt)){
|
if(AccessBlockchain.sendTransationTo(address, adD, amt)){
|
||||||
Toast.makeText(this, "OK.", Toast.LENGTH_SHORT).show();
|
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();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue