11 lines
172 B
Go
11 lines
172 B
Go
package core
|
|
|
|
import (
|
|
"context"
|
|
"mic-wallet/server/repository"
|
|
)
|
|
|
|
func CommitBlock(ctx context.Context, repo *repository.Repository, block *Block) error {
|
|
return nil
|
|
}
|