fix(solo): fix getPendingNonce return 0 nonce error

This commit is contained in:
Alexader 2020-10-23 16:49:42 +08:00
parent b2af69cedb
commit fe97c92905
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ func (n *Node) Stop() {
func (n *Node) GetPendingNonceByAccount(account string) uint64 {
// TODO: implement me
return 0
return 1
}
func (n *Node) Prepare(tx *pb.Transaction) error {