diff options
author | Felix Lange <fjl@twurst.com> | 2015-03-10 21:55:00 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-03-10 21:55:00 +0800 |
commit | 0f67f1e9de856404136dcdce78fc0ab93bab6a84 (patch) | |
tree | b0a328463810c52d7b0a4f42663b19f5a5331f30 /xeth/xeth.go | |
parent | 0395c174ca5221dd936c19143ced454dac56d54a (diff) | |
download | dexon-0f67f1e9de856404136dcdce78fc0ab93bab6a84.tar.gz dexon-0f67f1e9de856404136dcdce78fc0ab93bab6a84.tar.zst dexon-0f67f1e9de856404136dcdce78fc0ab93bab6a84.zip |
xeth: fix signing transaction after unlock
Diffstat (limited to 'xeth/xeth.go')
-rw-r--r-- | xeth/xeth.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go index f8b537321..60262bf17 100644 --- a/xeth/xeth.go +++ b/xeth/xeth.go @@ -360,7 +360,7 @@ func (self *XEth) sign(tx *types.Transaction, from []byte, didUnlock bool) error return fmt.Errorf("could not unlock sender account") } // retry signing, the account should now be unlocked. - self.sign(tx, from, true) + return self.sign(tx, from, true) } else if err != nil { return err } |