This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % go test -v -count=1 ./gnovm/cmd/benchops -run TestBenchStoreSet -timeout 2m | |
| === RUN TestBenchStoreSet | |
| panic: test timed out after 2m0s | |
| running tests: | |
| TestBenchStoreSet (2m0s) | |
| goroutine 103 [running]: | |
| testing.(*M).startAlarm.func1() | |
| /Users/jefft0/.asdf/installs/golang/1.23.6/packages/pkg/mod/golang.org/[email protected]/src/testing/testing.go:2484 +0x308 | |
| created by time.goFunc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git diff | |
| diff --git a/gno.land/pkg/sdk/vm/vm.proto b/gno.land/pkg/sdk/vm/vm.proto | |
| index e02226e1a..e8a0e6bfd 100644 | |
| --- a/gno.land/pkg/sdk/vm/vm.proto | |
| +++ b/gno.land/pkg/sdk/vm/vm.proto | |
| @@ -10,26 +10,32 @@ import "github.com/gnolang/gno/tm2/pkg/std/std.proto"; | |
| message m_call { | |
| string caller = 1; | |
| string send = 2; | |
| - string pkg_path = 3; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| crand "crypto/rand" | |
| "berty.tech/weshnet/pkg/ipfsutil" | |
| "github.com/dgraph-io/badger/v2/options" | |
| ds "github.com/ipfs/go-datastore" |