diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-13 16:21:17 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:21 +0800 |
commit | 56680e215e7e27ab8896d782876ee64881cae6ff (patch) | |
tree | 40daa411b7f1ee239b702ccc7987b6130892d7e6 /consensus/dexcon/api.go | |
parent | f82a81c6fa36c8ee6ba6a55e0662930c8f0d2658 (diff) | |
download | go-tangerine-56680e215e7e27ab8896d782876ee64881cae6ff.tar go-tangerine-56680e215e7e27ab8896d782876ee64881cae6ff.tar.gz go-tangerine-56680e215e7e27ab8896d782876ee64881cae6ff.tar.bz2 go-tangerine-56680e215e7e27ab8896d782876ee64881cae6ff.tar.lz go-tangerine-56680e215e7e27ab8896d782876ee64881cae6ff.tar.xz go-tangerine-56680e215e7e27ab8896d782876ee64881cae6ff.tar.zst go-tangerine-56680e215e7e27ab8896d782876ee64881cae6ff.zip |
consensus: implement DEXON cryptoeconomics v4.0 (#145)
Diffstat (limited to 'consensus/dexcon/api.go')
-rw-r--r-- | consensus/dexcon/api.go | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/consensus/dexcon/api.go b/consensus/dexcon/api.go deleted file mode 100644 index 6f314b96b..000000000 --- a/consensus/dexcon/api.go +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright 2018 The go-ethereum Authors -// This file is part of the go-ethereum library. -// -// The go-ethereum library is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// The go-ethereum library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. - -package dexcon - -// API exposes ethash related methods for the RPC interface. -type API struct { - dexcon *Dexcon -} - -func (api *API) Hello() error { - return nil -} |