Skip to content

Instantly share code, notes, and snippets.

I0724 14:13:28.503609 32419 worker.go:503] commit new work on block 980702 with 43 txs & 0 uncles. Took 1.898667859s
I0724 14:13:31.576241 32419 chain_manager.go:656] imported 1 block(s) (0 queued 0 ignored) including 43 txs in 1.30471223s. #980702 [24108463 / 24108463]
I0724 14:13:31.580755 32419 chain_manager.go:656] imported 0 block(s) (0 queued 1 ignored) including 0 txs in 4.446447ms. #980701 [fd705139 / fd705139]
I0724 14:13:31.982940 32419 worker.go:503] commit new work on block 980703 with 32 txs & 0 uncles. Took 406.54895ms
I0724 14:13:39.630266 32419 chain_manager.go:656] imported 0 block(s) (0 queued 1 ignored) including 0 txs in 7.604206ms. #980702 [24108463 / 24108463]
I0724 14:13:47.319476 32419 chain_manager.go:656] imported 1 block(s) (0 queued 0 ignored) including 35 txs in 1.152045376s. #980703 [60b79085 / 60b79085]
I0724 14:13:47.323508 32419 chain_manager.go:656] imported 0 block(s) (0 queued 1 ignored) including 0 txs in 3.984976ms. #980702 [24108463 / 24108463]
I0724 14:13:
* Micheal Jackson / Jackson 5
* Cake by the Ocean - SWAAY
* Timberlake
* Signed, Sealed, Delivered, I'm yours - Stevie Wonder
* Classic - MKTO
* Shake It Off - Tay Tay
* Love you like a love song - Selena Gomez
* Somebody To Love - Queen
* Somewhere over the rainbow - Israel K.
* Call Me Maybe - CRJ

Keybase proof

I hereby claim:

  • I am tcoulter on github.
  • I am tcoulter (https://keybase.io/tcoulter) on keybase.
  • I have a public key whose fingerprint is 95FE 0223 BC6D C1A5 1F70 31F2 6743 D44B B5B3 9962

To claim this, I am signing this object:

@tcoulter
tcoulter / fmulfdiv
Created October 20, 2021 06:06
Sweet sweet overflow checking in Yul (almost assembly)
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
contract Test {
function fmul(
uint256 x,
uint256 y,
uint256 baseUnit
) public pure returns (uint256 z) {
@tcoulter
tcoulter / fmulfdiv.sol
Created October 20, 2021 06:07
Sweet sweet overflow protection in Yul (almost assembly)
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
contract Test {
function fmul(
uint256 x,
uint256 y,
uint256 baseUnit
) public pure returns (uint256 z) {