mirror of
https://github.com/logos-storage/nim-nitro.git
synced 2026-01-02 13:43:06 +00:00
There's a new byteutils in newer versions of stew - also, remove upraises and disable windows testing which requires SSL library install
11 lines
199 B
Nim
11 lines
199 B
Nim
import pkg/contractabi
|
|
import ../basics
|
|
|
|
{.push raises: [].}
|
|
|
|
export basics
|
|
export contractabi
|
|
|
|
func encode*(encoder: var AbiEncoder, destination: Destination) =
|
|
encoder.write(destination.toArray)
|