micw/server/core/commit_block.go

11 lines
172 B
Go
Raw Permalink Normal View History

2024-11-17 21:24:19 +00:00
package core
import (
"context"
"mic-wallet/server/repository"
)
func CommitBlock(ctx context.Context, repo *repository.Repository, block *Block) error {
return nil
}