We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current implementation of the build transfer transaction method signs the transaction:
fuels-dart/packages/fuels/native/src/features/transaction.rs
Line 115 in 66f0c2a
tx_builder.build
This makes it insecure to send such signed transaction requests over network without the desire to execute them (eg for simulation)
See the issue on forum
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current implementation of the build transfer transaction method signs the transaction:
fuels-dart/packages/fuels/native/src/features/transaction.rs
Line 115 in 66f0c2a
Without that, the call of
tx_builder.build
would fail, because it requires signatures to be present.This makes it insecure to send such signed transaction requests over network without the desire to execute them (eg for simulation)
See the issue on forum
The text was updated successfully, but these errors were encountered: