Commit f66b09c7 authored by jiangpeng's avatar jiangpeng Committed by vipwzw

para:load crypto bls without block height

parent 86fb0f34
...@@ -65,7 +65,7 @@ type blsClient struct { ...@@ -65,7 +65,7 @@ type blsClient struct {
func newBlsClient(para *client, cfg *subConfig) *blsClient { func newBlsClient(para *client, cfg *subConfig) *blsClient {
b := &blsClient{paraClient: para} b := &blsClient{paraClient: para}
b.selfID = cfg.AuthAccount b.selfID = cfg.AuthAccount
cli, err := crypto.Load("bls", para.GetCurrentHeight()) cli, err := crypto.Load("bls", -1)
if err != nil { if err != nil {
panic("new bls crypto fail") panic("new bls crypto fail")
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment