Skip to content
Snippets Groups Projects
Commit 57c0595c authored by Androlo's avatar Androlo
Browse files

.

parent 4355e1a0
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ import ( ...@@ -14,7 +14,7 @@ import (
"path" "path"
) )
const ERISDB_VERSION = "0.11.5" const ERISDB_VERSION = "0.11.6"
const TENDERMINT_VERSION = "0.5.0" const TENDERMINT_VERSION = "0.5.0"
var log = log15.New("module", "eris/erisdb_server") var log = log15.New("module", "eris/erisdb_server")
......
...@@ -243,6 +243,15 @@ func (this *transactor) TransactAndHold(privKey, address, data []byte, gasLimit, ...@@ -243,6 +243,15 @@ func (this *transactor) TransactAndHold(privKey, address, data []byte, gasLimit,
return nil, nil return nil, nil
} }
func (this *transactor) Send(privKey, toAddress []byte, amount int64) (*ep.Receipt, error) {
return nil, nil
}
func (this *transactor) SendAndHold(privKey, toAddress []byte, amount int64) (*ep.Receipt, error) {
return nil, nil
}
func (this *transactor) TransactNameReg(privKey []byte, name, data string, amount, fee int64) (*ep.Receipt, error) { func (this *transactor) TransactNameReg(privKey []byte, name, data string, amount, fee int64) (*ep.Receipt, error) {
return this.testData.TransactNameReg.Output, nil return this.testData.TransactNameReg.Output, nil
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment