From 26778d7a352a3dffcc41178403a05bb8808a49e5 Mon Sep 17 00:00:00 2001 From: Raul Jordan Date: Mon, 15 Jan 2018 16:53:42 -0600 Subject: [PATCH] incl blocks, transactions, and vm protocol interface overrides Former-commit-id: 4f7ea1013da8d6daefab63a0236b14fef66b5c1a [formerly 658e8d21091332ef2e25ba61ac839ed3af98822e] Former-commit-id: 11677ca82e862dd20e0541ef196c17ebd38af856 --- sharding/blocks.go | 6 ++++++ sharding/transactions.go | 6 ++++++ sharding/vm.go | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100644 sharding/blocks.go create mode 100644 sharding/transactions.go create mode 100644 sharding/vm.go diff --git a/sharding/blocks.go b/sharding/blocks.go new file mode 100644 index 000000000..2831175b7 --- /dev/null +++ b/sharding/blocks.go @@ -0,0 +1,6 @@ +// 2018 Prysmatic Labs +// This file is part of the prysmaticlabs/geth-sharding library. +// +// This file overrides the default protocol blocks interface + +package sharding diff --git a/sharding/transactions.go b/sharding/transactions.go new file mode 100644 index 000000000..8bbaa9a6d --- /dev/null +++ b/sharding/transactions.go @@ -0,0 +1,6 @@ +// 2018 Prysmatic Labs +// This file is part of the prysmaticlabs/geth-sharding library. +// +// This file overrides the default protocol transaction interface + +package sharding diff --git a/sharding/vm.go b/sharding/vm.go new file mode 100644 index 000000000..bef5b0112 --- /dev/null +++ b/sharding/vm.go @@ -0,0 +1,6 @@ +// 2018 Prysmatic Labs +// This file is part of the prysmaticlabs/geth-sharding library. +// +// This file overrides the default protocol VM interface + +package sharding