go-blockchain/variant.go
Claude 9befee1264
Some checks failed
Security Scan / security (push) Successful in 12s
Test / Test (push) Failing after 31s
feat(wallet): add transfer command, build tags for CoreIDE
wallet transfer: send LTHN via C++ wallet RPC proxy.
  core-chain wallet transfer --to iTHN... --amount 1.5

Build tag `blockchain` added to command files. CoreIDE discovers
c.Command() registrations when tag is active, enabling custom
CoreApp builds with blockchain features as a picklist.

  go build -tags blockchain .

Co-Authored-By: Charon <charon@lethean.io>
2026-04-02 01:22:19 +01:00

10 lines
363 B
Go

//go:build blockchain
// Package blockchain provides the Lethean blockchain as a Core service.
// Build tag "blockchain" enables blockchain commands in CoreApp builds.
//
// CoreIDE discovers c.Command() registrations from this package when
// the "blockchain" tag is active, enabling custom app composition.
//
// go build -tags blockchain .
package blockchain