Skip to content

Commit 973241d

Browse files
author
Jeff Yanta
committed
Setup real program address and configuration
1 parent 7902dd0 commit 973241d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pkg/solana/cvm/program.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ var (
1414
)
1515

1616
var (
17-
// todo: setup real program address
18-
PROGRAM_ADDRESS = mustBase58Decode("vmT2hAx4N2U6DyjYxgQHER4VGC8tHJCfHNsSepBKCJZ")
17+
PROGRAM_ADDRESS = mustBase58Decode("vmZ1WUq8SxjBWcaeTCvgJRZbS84R61uniFsQy5YMRTJ")
1918
PROGRAM_ID = ed25519.PublicKey(PROGRAM_ADDRESS)
2019
)
2120

pkg/solana/cvm/types_memory_allocator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cvm
22

33
const (
4-
CompactStateItems = 1000
4+
CompactStateItems = 32_000
55
)
66

77
type MemoryAllocator interface {

0 commit comments

Comments
 (0)