aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/stack.go
diff options
context:
space:
mode:
authorGuillaume Ballet <gballet@gmail.com>2018-06-26 20:56:25 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-06-26 20:56:25 +0800
commit598f786aabc8f8f998008a59094e76944f6c5bdc (patch)
tree3980def2842bed3eda00652520ef9fa93a0aa201 /core/vm/stack.go
parent461291882edce0ac4a28f64c4e8725b7f57cbeae (diff)
downloadgo-tangerine-598f786aabc8f8f998008a59094e76944f6c5bdc.tar.gz
go-tangerine-598f786aabc8f8f998008a59094e76944f6c5bdc.tar.zst
go-tangerine-598f786aabc8f8f998008a59094e76944f6c5bdc.zip
core/vm: clear linter warnings (#17057)
* core/vm: clear linter warnings * core/vm: review input * core/vm.go: revert lint in noop as per request
Diffstat (limited to 'core/vm/stack.go')
-rw-r--r--core/vm/stack.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/vm/stack.go b/core/vm/stack.go
index 9c10d50ad..4c1b9e803 100644
--- a/core/vm/stack.go
+++ b/core/vm/stack.go
@@ -21,7 +21,7 @@ import (
"math/big"
)
-// stack is an object for basic stack operations. Items popped to the stack are
+// Stack is an object for basic stack operations. Items popped to the stack are
// expected to be changed and modified. stack does not take care of adding newly
// initialised objects.
type Stack struct {
@@ -32,6 +32,7 @@ func newstack() *Stack {
return &Stack{data: make([]*big.Int, 0, 1024)}
}
+// Data returns the underlying big.Int array.
func (st *Stack) Data() []*big.Int {
return st.data
}
@@ -80,6 +81,7 @@ func (st *Stack) require(n int) error {
return nil
}
+// Print dumps the content of the stack
func (st *Stack) Print() {
fmt.Println("### stack ###")
if len(st.data) > 0 {