Commit 0f67f1e9 authored by Felix Lange's avatar Felix Lange

xeth: fix signing transaction after unlock

parent 0395c174
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment