fvm liftoff
This commit is contained in:
parent
550d3888ca
commit
17cd28028f
57
FVMLiftoff.txt
Normal file
57
FVMLiftoff.txt
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
. +
|
||||||
|
. ' ` .
|
||||||
|
. ' . +
|
||||||
|
. ' . ' |
|
||||||
|
. ' . ' |
|
||||||
|
+ . ' . +
|
||||||
|
| ` . . ' . ' .
|
||||||
|
| + . ' . +
|
||||||
|
+ | . ' . ' |
|
||||||
|
` . | . ' . ' |
|
||||||
|
+ + . ' . +
|
||||||
|
| ` . . ' . '
|
||||||
|
| + . '
|
||||||
|
+ | . ' .
|
||||||
|
` . | '. ` .
|
||||||
|
+ ` . ` .
|
||||||
|
` . ` . ` . --- ---
|
||||||
|
` . ` . . + /\__\ ___ /\ \
|
||||||
|
` . + ' | /:/ _/_ /\ \ |::\ \
|
||||||
|
` . | | /:/ /\__\ \:\ \ |:|:\ \
|
||||||
|
` . | . + /:/ /:/ / \:\ \ __|:|\:\ \
|
||||||
|
+ ' /:/_/:/ / ___ \:\__\ /::::|_\:\__\
|
||||||
|
\:\/:/ / /\ \ |:| | \:\~~\ \/__/
|
||||||
|
\::/__/ \:\ \|:| | \:\ \
|
||||||
|
\:\ \ \:\__|:|__| \:\ \
|
||||||
|
\:\__\ \::::/__/ \:\__\
|
||||||
|
\/__/ ~~~~ \/__/
|
||||||
|
___ ___ ___ ___
|
||||||
|
/\__\ /\ \ /\__\ /\__\
|
||||||
|
___ /:/ _/_ ___ /::\ \ /:/ _/_ /:/ _/_
|
||||||
|
/\__\ /:/ /\__\ /\__\ /:/\:\ \ /:/ /\__\ /:/ /\__\
|
||||||
|
___ ___ /:/__/ /:/ /:/ / /:/ / /:/ \:\ \ /:/ /:/ / /:/ /:/ /
|
||||||
|
/\ \ /\__\ /::\ \ /:/_/:/ / /:/__/ /:/__/ \:\__\ /:/_/:/ / /:/_/:/ /
|
||||||
|
\:\ \ /:/ / \/\:\ \__ \:\/:/ / /::\ \ \:\ \ /:/ / \:\/:/ / \:\/:/ /
|
||||||
|
\:\ /:/ / ~~\:\/\__\ \::/__/ /:/\:\ \ \:\ /:/ / \::/__/ \::/__/ . +
|
||||||
|
\:\/:/ / \::/ / \:\ \ \/__\:\ \ \:\/:/ / \:\ \ \:\ \ . ' ` .
|
||||||
|
\::/ / /:/ / \:\__\ \:\__\ \::/ / \:\__\ \:\__\ . ' . +
|
||||||
|
\/__/ \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ . ' . ' |
|
||||||
|
. ' . ' |
|
||||||
|
+ . ' . +
|
||||||
|
| ` . . ' . ' .
|
||||||
|
| + . ' . +
|
||||||
|
+ | . ' . ' |
|
||||||
|
` . | . ' . ' |
|
||||||
|
+ + . ' . +
|
||||||
|
| ` . . ' . '
|
||||||
|
| + . '
|
||||||
|
+ | . ' .
|
||||||
|
` . | '. ` .
|
||||||
|
+ ` . ` .
|
||||||
|
` . ` . ` .
|
||||||
|
` . ` . . +
|
||||||
|
` . + ' |
|
||||||
|
` . | |
|
||||||
|
` . | . +
|
||||||
|
|
||||||
|
|
@ -1,9 +1,12 @@
|
|||||||
package stmgr
|
package stmgr
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bufio"
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
"sort"
|
"sort"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
@ -192,6 +195,13 @@ func (sm *StateManager) HandleStateForks(ctx context.Context, root cid.Cid, heig
|
|||||||
"to", retCid,
|
"to", retCid,
|
||||||
"duration", time.Since(startTime),
|
"duration", time.Since(startTime),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
f, _ := os.Open("/Users/jennijuju/filecoin/lotus/FVMLiftoff.txt")
|
||||||
|
scanner := bufio.NewScanner(f)
|
||||||
|
for scanner.Scan() {
|
||||||
|
line := scanner.Text()
|
||||||
|
fmt.Println(line)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return retCid, nil
|
return retCid, nil
|
||||||
|
Loading…
Reference in New Issue
Block a user