Merge pull request #26275 from ManuShamil/gh-pages

correct typo in JavasScript-Console gh-page.
pull/26366/head
ligi 2 years ago committed by GitHub
commit 5be1a96dd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/_interface/JavaScript-Console.md

@ -89,7 +89,7 @@ eth.getBalance(personal.listAccounts[0])
To send a transaction (without global account unlocking):
```js
eth.sendTransaction({to: eth.accounts[0], to: eth.accounts[1], value: web3.toWei(0.5, "ether")})
eth.sendTransaction({ from: eth.accounts[0], to: eth.accounts[1], value: web3.toWei(0.5, "ether")})
```
It is also possible to load pre-written Javascript files into the console by passing the `--preload` flag

Loading…
Cancel
Save