-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from bttcprotocol/feat-update-code
update contract
- Loading branch information
Showing
4 changed files
with
149 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
package bor | ||
|
||
import ( | ||
"math/big" | ||
"testing" | ||
|
||
"github.com/ethereum/go-ethereum/common" | ||
"github.com/ethereum/go-ethereum/common/hexutil" | ||
"github.com/ethereum/go-ethereum/core" | ||
"github.com/ethereum/go-ethereum/core/rawdb" | ||
"github.com/ethereum/go-ethereum/core/state" | ||
"github.com/ethereum/go-ethereum/core/types" | ||
"github.com/ethereum/go-ethereum/core/vm" | ||
"github.com/ethereum/go-ethereum/params" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestGenesisContractChange(t *testing.T) { | ||
addr0 := common.Address{0x1} | ||
|
||
b := &Bor{ | ||
config: ¶ms.BorConfig{ | ||
Sprint: 10, // skip sprint transactions in sprint | ||
BlockAlloc: map[string]interface{}{ | ||
// write as interface since that is how it is decoded in genesis | ||
"2": map[string]interface{}{ | ||
addr0.Hex(): map[string]interface{}{ | ||
"code": hexutil.Bytes{0x1, 0x2}, | ||
"balance": "0", | ||
}, | ||
}, | ||
"4": map[string]interface{}{ | ||
addr0.Hex(): map[string]interface{}{ | ||
"code": hexutil.Bytes{0x1, 0x3}, | ||
"balance": "0x1000", | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
genspec := &core.Genesis{ | ||
Alloc: map[common.Address]core.GenesisAccount{ | ||
addr0: { | ||
Balance: big.NewInt(0), | ||
Code: []byte{0x1, 0x1}, | ||
}, | ||
}, | ||
} | ||
|
||
db := rawdb.NewMemoryDatabase() | ||
genesis := genspec.MustCommit(db) | ||
|
||
statedb, err := state.New(genesis.Root(), state.NewDatabase(db), nil) | ||
assert.NoError(t, err) | ||
|
||
config := params.ChainConfig{} | ||
chain, err := core.NewBlockChain(db, nil, &config, b, vm.Config{}, nil, nil) | ||
assert.NoError(t, err) | ||
|
||
addBlock := func(root common.Hash, num int64) (common.Hash, *state.StateDB) { | ||
h := &types.Header{ | ||
ParentHash: root, | ||
Number: big.NewInt(num), | ||
} | ||
b.Finalize(chain, h, statedb, nil, nil) | ||
|
||
// write state to database | ||
root, err := statedb.Commit(false) | ||
assert.NoError(t, err) | ||
assert.NoError(t, statedb.Database().TrieDB().Commit(root, true, nil)) | ||
|
||
statedb, err := state.New(h.Root, state.NewDatabase(db), nil) | ||
assert.NoError(t, err) | ||
|
||
return root, statedb | ||
} | ||
|
||
assert.Equal(t, statedb.GetCode(addr0), []byte{0x1, 0x1}) | ||
|
||
root := genesis.Root() | ||
|
||
// code does not change | ||
root, statedb = addBlock(root, 1) | ||
assert.Equal(t, statedb.GetCode(addr0), []byte{0x1, 0x1}) | ||
|
||
// code changes 1st time | ||
root, statedb = addBlock(root, 2) | ||
assert.Equal(t, statedb.GetCode(addr0), []byte{0x1, 0x2}) | ||
|
||
// code same as 1st change | ||
root, statedb = addBlock(root, 3) | ||
assert.Equal(t, statedb.GetCode(addr0), []byte{0x1, 0x2}) | ||
|
||
// code changes 2nd time | ||
_, statedb = addBlock(root, 4) | ||
assert.Equal(t, statedb.GetCode(addr0), []byte{0x1, 0x3}) | ||
|
||
// make sure balance change DOES NOT take effect | ||
assert.Equal(t, statedb.GetBalance(addr0), big.NewInt(0)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters