Skip to content

Commit

Permalink
fix(connector-besu): fixed transaction value assignment and added test
Browse files Browse the repository at this point in the history
Signed-off-by: jordigiam <jordi.giron.amezcua@accenture.com>
  • Loading branch information
jordigiam authored and kikoncuo committed Feb 16, 2021
1 parent 2b2c32c commit 48bb129
Show file tree
Hide file tree
Showing 4 changed files with 2,034 additions and 829 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ export class PluginLedgerConnectorBesu
transactionConfig.from = web3SigningCredential.ethAccount;
transactionConfig.gas = req.gas;
transactionConfig.gasPrice = req.gasPrice;
transactionConfig.value = req.value;

const txReq: RunTransactionRequest = {
transactionConfig,
Expand Down
Loading

0 comments on commit 48bb129

Please sign in to comment.