mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-18 13:14:56 +01:00
14 lines
211 B
Bash
14 lines
211 B
Bash
#!/bin/sh
|
|
|
|
. ./trace.sh
|
|
. ./callbacks_txid.sh
|
|
|
|
newblock() {
|
|
trace "Entering newblock()..."
|
|
|
|
local request=${1}
|
|
local blockhash=$(echo "${request}" | cut -d ' ' -f2 | cut -d '/' -f3)
|
|
|
|
do_callbacks_txid
|
|
}
|