diff --git a/go.mod b/go.mod index 14e81a6..f0347a8 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( github.com/hashicorp/golang-lru v1.0.2 github.com/hyperledger/firefly-common v1.4.6 github.com/hyperledger/firefly-signer v1.1.13 - github.com/hyperledger/firefly-transaction-manager v1.3.12 + github.com/hyperledger/firefly-transaction-manager v1.3.13 github.com/sirupsen/logrus v1.9.3 github.com/spf13/cobra v1.8.0 github.com/stretchr/testify v1.8.4 diff --git a/go.sum b/go.sum index fdc3a4c..ebbedd9 100644 --- a/go.sum +++ b/go.sum @@ -104,8 +104,8 @@ github.com/hyperledger/firefly-common v1.4.6 h1:qqXoSaRml3WjUnWcWxrrXs5AIOWa+UcM github.com/hyperledger/firefly-common v1.4.6/go.mod h1:jkErZdQmC9fsAJZQO427tURdwB9iiW+NMUZSqS3eBIE= github.com/hyperledger/firefly-signer v1.1.13 h1:eiHjc6HPRG8AzXUCUgm51qqX1I9BokiuiiqJ89XwK4M= github.com/hyperledger/firefly-signer v1.1.13/go.mod h1:pK6kivzBFSue3zpJSQpH67VasnLLbwBJOBUNv0zHbRA= -github.com/hyperledger/firefly-transaction-manager v1.3.12 h1:qYgAh8qzEbx15TqZ7ma8921BOcBuT1X4JiRxYTBk2uQ= -github.com/hyperledger/firefly-transaction-manager v1.3.12/go.mod h1:N3BoHh8+dWG710oQKuNiXmJNEOBBeLTsQ8GpZ41vhog= +github.com/hyperledger/firefly-transaction-manager v1.3.13 h1:MaMCV/qonVrR9v6YdSneC6HnkL/gOyUoUvFO3zoAnYU= +github.com/hyperledger/firefly-transaction-manager v1.3.13/go.mod h1:N3BoHh8+dWG710oQKuNiXmJNEOBBeLTsQ8GpZ41vhog= github.com/imdario/mergo v0.3.11/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= github.com/imdario/mergo v0.3.16 h1:wwQJbIsHYGMUyLSPrEq1CT16AhnhNJQ51+4fdHUnCl4= github.com/imdario/mergo v0.3.16/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+hD27ysY= diff --git a/internal/ethereum/blocklistener.go b/internal/ethereum/blocklistener.go index c80885c..1facc7a 100644 --- a/internal/ethereum/blocklistener.go +++ b/internal/ethereum/blocklistener.go @@ -139,7 +139,7 @@ func (bl *blockListener) listenLoop() { continue } - update := &ffcapi.BlockHashEvent{GapPotential: gapPotential} + update := &ffcapi.BlockHashEvent{GapPotential: gapPotential, Created: fftypes.Now()} var notifyPos *list.Element for _, h := range blockHashes { if len(h) != 32 {