You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During fee detection, on Xahau and Xahau Testnet, the network parses the tx blob as part of the fee detection.
That tx may not be valid, e.g. the Hook a payload refers to does not exist yet, which results in a fee detection error.
If that happens, we keep on showing we're detecting fee which times out.
[22:56:20.903] Unable to calculate available network fees: "Call timeout after 40 seconds"
[22:57:31.544] Unable to calculate available network fees: "Call timeout after 40 seconds"
Request:
If fee command returns an error (error exists), show an alert: Could not reliably detect fees (${response.error 'unknown error type'}), message: ${response.error_exception || 'unknown error message'} and
Fall back to the regular fee mechanism of low medium high with an assumed fee that is relatively high, e.g. 5000 drops + the escalation based on top of that.
The fix will first attempt to request the fee using tx_blob. If this fails, the tx_blob will be omitted, and the request will be retried. If the second attempt succeeds, the generic fee calculation logic will be applied.
Note: This fix does not implement any customization for the returned fee when the fallback method is applied. The generic fee calculation logic will always be used.
with an assumed fee that is relatively high, e.g. 5000 drops + the escalation based on top of that.
During fee detection, on Xahau and Xahau Testnet, the network parses the tx blob as part of the fee detection.
That tx may not be valid, e.g. the Hook a payload refers to does not exist yet, which results in a fee detection error.
If that happens, we keep on showing we're detecting fee which times out.
Request:
error
exists), show an alert:Could not reliably detect fees (${response.error 'unknown error type'}), message: ${response.error_exception || 'unknown error message'}
andEasy to simulate by overruling tx_blob
Examples:
The text was updated successfully, but these errors were encountered: