From 5dc2638c8ebc8ce8f77159fb80e4da4d226f203c Mon Sep 17 00:00:00 2001 From: arowser Date: Wed, 26 Feb 2014 12:48:08 +0800 Subject: [PATCH] adopt db.NewIterator change The db.NewIterator method change to two paramters in last version --- mastercoin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastercoin.go b/mastercoin.go index e0863f3..a0cae6e 100644 --- a/mastercoin.go +++ b/mastercoin.go @@ -173,7 +173,7 @@ func (s *MastercoinServer) Start(playback bool) { } - iter := s.db.GetDb().NewIterator(nil) + iter := s.db.GetDb().NewIterator(nil,nil) for iter.Next() { // Remember that the contents of the returned slice should not be modified, and // only valid until the next call to Next.