diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-12 18:39:34 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | 4bdb6e74d3415a6dd264f4454c3d118e90125fb2 (patch) | |
tree | daa6566c65809068dcbd7d61bfa191961f9b9e2a | |
parent | fef27de8faee41564d1b8beee77a426972b950fd (diff) | |
download | dexon-4bdb6e74d3415a6dd264f4454c3d118e90125fb2.tar dexon-4bdb6e74d3415a6dd264f4454c3d118e90125fb2.tar.gz dexon-4bdb6e74d3415a6dd264f4454c3d118e90125fb2.tar.bz2 dexon-4bdb6e74d3415a6dd264f4454c3d118e90125fb2.tar.lz dexon-4bdb6e74d3415a6dd264f4454c3d118e90125fb2.tar.xz dexon-4bdb6e74d3415a6dd264f4454c3d118e90125fb2.tar.zst dexon-4bdb6e74d3415a6dd264f4454c3d118e90125fb2.zip |
core: vm: allow other people to stake for a node
-rw-r--r-- | core/vm/governance.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/vm/governance.go b/core/vm/governance.go index fa9f578be..ef7c9d6eb 100644 --- a/core/vm/governance.go +++ b/core/vm/governance.go @@ -1424,12 +1424,6 @@ func (g *GovernanceContract) stake(publicKey []byte) ([]byte, error) { return nil, errExecutionReverted } - // Make sure the public key belongs to the caller. - if crypto.PubkeyToAddress(*pk) != caller { - g.penalize() - return nil, errExecutionReverted - } - offset = g.state.NodesLength() g.state.PushNode(&nodeInfo{ Owner: caller, |