Consensys / quorum

A permissioned implementation of Ethereum supporting data privacy
https://www.goquorum.com/
GNU Lesser General Public License v3.0
4.68k stars 1.29k forks source link

Unable to transfer ether b/w account in Istanbul BFT network #421

Closed dhakad-rakesh closed 6 years ago

dhakad-rakesh commented 6 years ago

System information

Geth version: 1.7.2-stable

OS & Version: Ubuntu 16.04

Expected behaviour

I have setup three node istanbul network with three validator. All node are connected and sync with each other. But when I transfer ether from one account to another, it return a Tx hash. When I check Tx with Tx hash, it show me Tx successfully mine in N block. But problem is, neither ether deduct from account nor add in another account.

Actual behaviour

Ether successfully transfer from one account to another account

Steps to reproduce the behaviour

eth.getBalance("0x210f1e4c56d68f63ab4bf41157bbca253abfec45") 1e+27 eth.getBalance("0x3a96365Afd742239b3a3696fF9Ae5D6a7cc538a5") 0 personal.unlockAccount("0x210f1e4c56d68f63ab4bf41157bbca253abfec45") Unlock account 0x210f1e4c56d68f63ab4bf41157bbca253abfec45 Passphrase: true eth.sendTransaction({from: "0x210f1e4c56d68f63ab4bf41157bbca253abfec45", to: "0x3a96365Afd742239b3a3696fF9Ae5D6a7cc538a5", value: 5000}) "0x593848605fb7f32279cf2402bfa4225267e11e419a086ae8e56aa39239e0514e" eth.getTransaction("0x593848605fb7f32279cf2402bfa4225267e11e419a086ae8e56aa39239e0514e") { blockHash: "0x1f25c5c621ce2942c42c6d9fc91997c6e9638823c24e97be0ea3943ab5d6a017", blockNumber: 4143, from: "0x210f1e4c56d68f63ab4bf41157bbca253abfec45", gas: 90000, gasPrice: 0, hash: "0x593848605fb7f32279cf2402bfa4225267e11e419a086ae8e56aa39239e0514e", input: "0x", nonce: 1, r: "0xb149c1511fea0a56c7f67886d8fa779ecc5925ae14041d1902a0b6e98d9796d8", s: "0x4eed709901dd3c1706e52bf114008ce71b2126843035ecdab124e355f4003b8c", to: "0x3a96365afd742239b3a3696ff9ae5d6a7cc538a5", transactionIndex: 0, v: "0x1b", value: 5000 } But accounts Balance not change eth.getBalance("0x210f1e4c56d68f63ab4bf41157bbca253abfec45") 1e+27 eth.getBalance("0x3a96365Afd742239b3a3696fF9Ae5D6a7cc538a5") 0

jpmsam commented 6 years ago

@rakeshdhakad Please make sure you checkout master on 0119528 or later and it should work.