Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
burrow
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hang Yu
burrow
Commits
284dcfdd
Unverified
Commit
284dcfdd
authored
8 years ago
by
Silas Davis
Browse files
Options
Downloads
Patches
Plain Diff
Fix blocking event subscription in transactAndHold
parent
32a3e93b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
erisdb/pipe/transactor.go
+15
-2
15 additions, 2 deletions
erisdb/pipe/transactor.go
with
15 additions
and
2 deletions
erisdb/pipe/transactor.go
+
15
−
2
View file @
284dcfdd
...
...
@@ -177,12 +177,25 @@ func (this *transactor) TransactAndHold(privKey, address, data []byte, gasLimit,
}
else
{
addr
=
address
}
wc
:=
make
(
chan
*
types
.
EventDataCall
)
// We want non-blocking on the first event received (but buffer the value),
// after which we want to block (and then discard the value - see below)
wc
:=
make
(
chan
*
types
.
EventDataCall
,
1
)
subId
:=
fmt
.
Sprintf
(
"%X"
,
rec
.
TxHash
)
this
.
eventEmitter
.
Subscribe
(
subId
,
types
.
EventStringAccCall
(
addr
),
func
(
evt
types
.
EventData
)
{
event
:=
evt
.
(
types
.
EventDataCall
)
if
bytes
.
Equal
(
event
.
TxID
,
rec
.
TxHash
)
{
wc
<-
&
event
// Beware the contract of go-events subscribe is that we must not be
// blocking in an event callback when we try to unsubscribe!
// We work around this by using a non-blocking receive.
select
{
// This is a non-blocking send, but since we are using a buffered
// channel of size 1 we will always grab our first event even if we
// haven't read from the channel at the time we receive the first event.
case
wc
<-
&
event
:
default
:
}
}
})
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment