2017-10-23 15:56:29 +00:00
|
|
|
package core
|
|
|
|
|
2017-10-25 22:24:38 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
)
|
2017-10-23 15:56:29 +00:00
|
|
|
|
|
|
|
type BlockchainLoggingObserver struct{}
|
|
|
|
|
|
|
|
func (blockchainObserver BlockchainLoggingObserver) NotifyBlockAdded(block Block) {
|
2017-10-25 22:24:38 +00:00
|
|
|
fmt.Printf("New block was added: %d\n"+
|
|
|
|
"\tTime: %v\n"+
|
|
|
|
"\tGas Limit: %d\n"+
|
|
|
|
"\tGas Used: %d\n"+
|
|
|
|
"\tNumber of Transactions %d\n", block.Number, time.Unix(block.Time.Int64(), 0), block.GasLimit, block.GasUsed, block.NumberOfTransactions)
|
2017-10-23 15:56:29 +00:00
|
|
|
}
|