Skip to content

Instantly share code, notes, and snippets.

@jefft0
jefft0 / gist:2d8954fa311714df01676021ad21e8e0
Created August 26, 2025 15:00
Issue timeout stack dump
% 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
@jefft0
jefft0 / gist:90ed1c02033f24a79a0649c26eeead26
Created August 21, 2025 16:08
Changes from misc/genproto make
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;
@jefft0
jefft0 / preload.go
Created February 9, 2024 16:27
Utility to create the Wesh accountSK and put it in the keystore
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"