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>
10 lines
363 B
Go
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
|