fix: Tron Timeout Issue (#1448)

* fix: Tron timeout issue

* fix: Revert

* fix: Tron transaction expiry error
This commit is contained in:
Adegoke David 2024-05-15 00:54:39 +01:00 committed by GitHub
parent 4947e231e9
commit fbecc5c994
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View file

@ -208,7 +208,7 @@ class TronClient {
TransactionContract(type: contract.contractType, parameter: parameter); TransactionContract(type: contract.contractType, parameter: parameter);
// Set the transaction expiration time (maximum 24 hours) // Set the transaction expiration time (maximum 24 hours)
final expireTime = DateTime.now().add(const Duration(hours: 24)); final expireTime = DateTime.now().add(const Duration(minutes: 30));
// Create a raw transaction // Create a raw transaction
TransactionRaw rawTransaction = TransactionRaw( TransactionRaw rawTransaction = TransactionRaw(
@ -369,7 +369,7 @@ class TronClient {
TransactionContract(type: contract.contractType, parameter: parameter); TransactionContract(type: contract.contractType, parameter: parameter);
// Set the transaction expiration time (maximum 24 hours) // Set the transaction expiration time (maximum 24 hours)
final expireTime = DateTime.now().add(const Duration(hours: 24)); final expireTime = DateTime.now().add(const Duration(minutes: 30));
// Create a raw transaction // Create a raw transaction
TransactionRaw rawTransaction = TransactionRaw( TransactionRaw rawTransaction = TransactionRaw(

View file

@ -10,7 +10,7 @@ case $APP_ANDROID_TYPE in
CONFIG_ARGS="--monero" CONFIG_ARGS="--monero"
;; ;;
$CAKEWALLET) $CAKEWALLET)
CONFIG_ARGS="--monero --bitcoin --haven --ethereum --polygon --nano --bitcoinCash --solana" CONFIG_ARGS="--monero --bitcoin --haven --ethereum --polygon --nano --bitcoinCash --solana --tron"
;; ;;
$HAVEN) $HAVEN)
CONFIG_ARGS="--haven" CONFIG_ARGS="--haven"

View file

@ -28,7 +28,7 @@ case $APP_IOS_TYPE in
CONFIG_ARGS="--monero" CONFIG_ARGS="--monero"
;; ;;
$CAKEWALLET) $CAKEWALLET)
CONFIG_ARGS="--monero --bitcoin --haven --ethereum --polygon --nano --bitcoinCash --solana" CONFIG_ARGS="--monero --bitcoin --haven --ethereum --polygon --nano --bitcoinCash --solana --tron"
;; ;;
$HAVEN) $HAVEN)

View file

@ -31,7 +31,7 @@ case $APP_MACOS_TYPE in
$MONERO_COM) $MONERO_COM)
CONFIG_ARGS="--monero";; CONFIG_ARGS="--monero";;
$CAKEWALLET) $CAKEWALLET)
CONFIG_ARGS="--monero --bitcoin --ethereum --polygon --nano --bitcoinCash --solana";; #--haven CONFIG_ARGS="--monero --bitcoin --ethereum --polygon --nano --bitcoinCash --solana --tron";; #--haven
esac esac
cp -rf pubspec_description.yaml pubspec.yaml cp -rf pubspec_description.yaml pubspec.yaml