Merge pull request #1615 from nspcc-dev/opcodes

core: redefine opcode prices
This commit is contained in:
Roman Khimov 2020-12-16 16:54:19 +03:00 committed by GitHub
commit 4dcd06ef44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 577 additions and 433 deletions

View file

@ -24,6 +24,10 @@ type FeerStub struct {
balance int64
}
func (fs *FeerStub) GetBaseExecFee() int64 {
return 30
}
func (fs *FeerStub) FeePerByte() int64 {
return fs.feePerByte
}