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
what about data field?
public static byte[] generateSignedRegularTransaction(String sourceAddress, long sourceAmount, List<Output> outputs, long signatureIndex, AddressManager addressManager) { if (addressManager.get(sourceAddress) == null) { throw new IllegalArgumentException("The address " + sourceAddress + " is not contained in the specified wallet file!"); } try { byte[] txid = calculateRegularTransactionTxID(sourceAddress, sourceAmount, outputs, signatureIndex); ... builder.setData(ByteString.copyFrom(new byte[]{}));
code which doesn't use data: https://github.com/VeriBlock/offline-wallet-cli/blob/master/src/main/java/veriblock/OfflineTransactionUtilities.java
code which use: https://github.com/VeriBlock/alt-integration/blob/master/core/src/main/java/org/veriblock/sdk/VeriBlockTransaction.java
is it ok just to set data eq to [] without any option on that point?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
what about data field?
code which doesn't use data: https://github.com/VeriBlock/offline-wallet-cli/blob/master/src/main/java/veriblock/OfflineTransactionUtilities.java
code which use: https://github.com/VeriBlock/alt-integration/blob/master/core/src/main/java/org/veriblock/sdk/VeriBlockTransaction.java
is it ok just to set data eq to [] without any option on that point?
The text was updated successfully, but these errors were encountered: