From 782bb41681d2799f99de11491585fe11a337af01 Mon Sep 17 00:00:00 2001 From: Shawn <44221603+shaspitz@users.noreply.github.com> Date: Tue, 12 Dec 2023 02:03:36 -0800 Subject: [PATCH] todos --- core/vm/contracts_with_ctx.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/vm/contracts_with_ctx.go b/core/vm/contracts_with_ctx.go index cefac1edc6..9708f2d056 100644 --- a/core/vm/contracts_with_ctx.go +++ b/core/vm/contracts_with_ctx.go @@ -80,6 +80,7 @@ func (c *mint) RequiredGas(input []byte) uint64 { // TODO const whitelistCreate2Addr = "0x000000" +// TODO: confirm new abi schema works with contract func (c *mint) Run(input []byte, ctx *precompileContext) ([]byte, error) { if ctx.caller != common.HexToAddress(whitelistCreate2Addr) { @@ -108,6 +109,7 @@ func (c *burn) RequiredGas(input []byte) uint64 { return 100 } +// TODO: confirm new abi schema works with contract func (c *burn) Run(input []byte, ctx *precompileContext) ([]byte, error) { if ctx.caller != common.HexToAddress(whitelistCreate2Addr) {