d5c2ab33fc
= Add eth_node_fingerprint to block that can be imitated by both hot and cold imports - Only sync missing blocks (blocks that are missing or don't share a fingerprint) on cold import - Set block is_final status after import
14 lines
191 B
Go
14 lines
191 B
Go
package crypto_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestCrypto(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Crypto Suite")
|
|
}
|