remove spurious debug logs

This commit is contained in:
whyrusleeping 2019-08-22 12:53:23 -07:00
parent 8dd16e3bed
commit dd2a217940
2 changed files with 0 additions and 3 deletions

View File

@ -305,7 +305,6 @@ func MakeGenesisBlock(bs bstore.Blockstore, balances map[address.Address]types.B
MessageReceipts: emptyroot,
BLSAggregate: types.Signature{Type: types.KTBLS, Data: []byte("signatureeee")},
}
fmt.Println("MESSAGES CID: ", b.Messages)
sb, err := b.ToStorageBlock()
if err != nil {

View File

@ -91,8 +91,6 @@ func (tu *syncTestUtil) mineNewBlock(src int) {
require.NoError(tu.t, tu.nds[src].MpoolPush(context.TODO(), msg))
}
fmt.Printf("state root: %v\n", fblk.Header.StateRoot)
require.NoError(tu.t, tu.nds[src].ChainSubmitBlock(context.TODO(), fblkToBlkMsg(fblk)))
}