Node improvements (#47)
* block partial persist * replaced refactored files with old one. * removed gokit/log from deps * Tweaks to not overburden remote nodes with getheaders/getblocks * Changed Transporter interface to not take the server as argument due to a cause of race warning from the compiler * started server test suite * more test + return errors from message handlers * removed --race from build * Little improvements.
This commit is contained in:
parent
dca1865a64
commit
aa4bc1b6e8
42 changed files with 1187 additions and 892 deletions
|
@ -3,10 +3,10 @@ package payload
|
|||
import (
|
||||
"bytes"
|
||||
"crypto/sha256"
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/CityOfZion/neo-go/pkg/util"
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestGetBlockEncodeDecode(t *testing.T) {
|
||||
|
@ -28,9 +28,7 @@ func TestGetBlockEncodeDecode(t *testing.T) {
|
|||
t.Fatal(err)
|
||||
}
|
||||
|
||||
if !reflect.DeepEqual(p, pDecode) {
|
||||
t.Fatalf("expected to have equal block payload %v and %v", p, pDecode)
|
||||
}
|
||||
assert.Equal(t, p, pDecode)
|
||||
}
|
||||
|
||||
func TestGetBlockEncodeDecodeWithHashStop(t *testing.T) {
|
||||
|
@ -54,7 +52,5 @@ func TestGetBlockEncodeDecodeWithHashStop(t *testing.T) {
|
|||
t.Fatal(err)
|
||||
}
|
||||
|
||||
if !reflect.DeepEqual(p, pDecode) {
|
||||
t.Fatalf("expected to have equal block payload %v and %v", p, pDecode)
|
||||
}
|
||||
assert.Equal(t, p, pDecode)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue