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
The (Fast)RawTransactionManager has a constructor: public RawTransactionManager(Web3j web3j, TxSignService txSignService, long chainId)
and another one: public RawTransactionManager( Web3j web3j, Credentials credentials, long chainId, TransactionReceiptProcessor transactionReceiptProcessor)
but misses one that accepts both: public RawTransactionManager( Web3j web3j, TxSignService txSignService, long chainId, TransactionReceiptProcessor transactionReceiptProcessor)
Haven't dived into the code to investigate if there are good (business or technical) reasons, not to implement it, but on a high level it seems there should not be any.
The text was updated successfully, but these errors were encountered:
Feature description_
The (Fast)RawTransactionManager has a constructor:
public RawTransactionManager(Web3j web3j, TxSignService txSignService, long chainId)
and another one:
public RawTransactionManager( Web3j web3j, Credentials credentials, long chainId, TransactionReceiptProcessor transactionReceiptProcessor)
but misses one that accepts both:
public RawTransactionManager( Web3j web3j, TxSignService txSignService, long chainId, TransactionReceiptProcessor transactionReceiptProcessor)
Haven't dived into the code to investigate if there are good (business or technical) reasons, not to implement it, but on a high level it seems there should not be any.
The text was updated successfully, but these errors were encountered: