mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Remove storage package
This commit is contained in:
parent
d2dcb6f755
commit
7d51b5ff96
1 changed files with 1 additions and 2 deletions
|
|
@ -493,7 +493,6 @@ import (
|
||||||
"log"
|
"log"
|
||||||
"math/big"
|
"math/big"
|
||||||
|
|
||||||
"github.com/dlm/eth-play/storage"
|
|
||||||
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
||||||
"github.com/ethereum/go-ethereum/common"
|
"github.com/ethereum/go-ethereum/common"
|
||||||
"github.com/ethereum/go-ethereum/core"
|
"github.com/ethereum/go-ethereum/core"
|
||||||
|
|
@ -521,7 +520,7 @@ func main() {
|
||||||
auth.From: {Balance: big.NewInt(9e18)},
|
auth.From: {Balance: big.NewInt(9e18)},
|
||||||
})
|
})
|
||||||
|
|
||||||
_, tx, store, err := storage.DeployStorage(auth, sim.Client())
|
_, tx, store, err := DeployStorage(auth, sim.Client())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("deploying smart contract: %v", err)
|
log.Fatalf("deploying smart contract: %v", err)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue